pub trait SnowflakeBase32Ext: Snowflake + Sized{
// Provided methods
fn encode(&self) -> String { ... }
fn decode(s: &str) -> Result<Self> { ... }
}Expand description
A trait for types that can be encoded to and decoded from base32 (crockford) strings.
Provided Methods§
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.