pub trait FromBaid64Str<const LEN: usize = 32>{
// Provided method
fn from_baid64_str(s: &str) -> Result<Self, Baid64ParseError> { ... }
}Provided Methods§
fn from_baid64_str(s: &str) -> Result<Self, Baid64ParseError>
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.