pub trait ToBase36 {
// Required method
fn to_base_36(self) -> String;
}
Expand description
Trait for types that can be converted to base 36.
pub trait ToBase36 {
// Required method
fn to_base_36(self) -> String;
}
Trait for types that can be converted to base 36.