Trait cuid_util::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 Nwhere N: Into<u128>,

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