1 2 3 4 5 6 7 8 9 10 11
static ALPHABET32:&'static[char]=&[]; pub struct B32<T>(T); pub trait B32Encode<I,O>{ fn encode(data:I)->O; } pub trait B32Decode<I,O>{ fn decode(data:I)->O; }