pub trait ToBase58Check {
// Required method
fn to_base58check(&self, version: u8) -> String;
}Expand description
A trait for converting a value to base58 encoded string.
Required Methods§
Sourcefn to_base58check(&self, version: u8) -> String
fn to_base58check(&self, version: u8) -> String
Converts a value of self to a base58 value, returning the owned string.
Dyn Compatibility§
This trait is dyn compatible.
In older versions of Rust, dyn compatibility was called "object safety".