pub trait ToBase58Check: Sized {
type Error;
// Required method
fn to_base58check(&self) -> Result<String, Self::Error>;
}
Expand description
The type that can be converted to base58check representation.
Required Associated Types§
Required Methods§
Sourcefn to_base58check(&self) -> Result<String, Self::Error>
fn to_base58check(&self) -> Result<String, Self::Error>
Produces base58check representation of this value.
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.