pub trait Base58: Bytable {
// Provided methods
fn try_from_bs58<S>(x: S) -> Result<Self, CompactEcashError>
where S: AsRef<str> { ... }
fn to_bs58(&self) -> String { ... }
}Provided Methods§
fn try_from_bs58<S>(x: S) -> Result<Self, CompactEcashError>
fn to_bs58(&self) -> String
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.