Trait wdg_base32::B32Decode [] [src]

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

Required Methods

Implementors