Trait ToBase58Check

Source
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§

Source

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.

Implementors§

Source§

impl<T> ToBase58Check for T
where T: BinProtWrite + Base58CheckVersion,