Trait FromBase58Check

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

Source

fn from_base58check<T: AsRef<str>>(b58: T) -> Result<Self, Self::Error>

Constructs this instance from base58check representation.

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§