Trait wdg_base32::B32Decode [] [src]

pub trait B32Decode<I, O> {
    fn validation(data: I) -> B32Error;
    fn decode(data: I) -> Result<O, B32Error>;
    unsafe fn unsafe_decode(data: I) -> O;
}

Required Methods

Implementors