pub trait FromBase58Check: Sized {
type Error;
// Required method
fn from_base58check<T: AsRef<str>>(b58: T) -> Result<Self, Self::Error>;
}
Expand description
The type that can be constructed from base58check representation.
Required Associated Types§
Required Methods§
Dyn Compatibility§
This trait is not dyn compatible.
In older versions of Rust, dyn compatibility was called "object safety", so this trait is not object safe.