Trait ToBase36

Source
pub trait ToBase36 {
    // Required method
    fn to_base_36(self) -> String;
}
Expand description

Trait for types that can be converted to base 36.

Required Methods§

Implementors§

Source§

impl<N> ToBase36 for N
where N: Into<u128>,

Blanket impl for ToBase36 for anything that can be converted to a u128.