pub trait FromBase32: Sized {
    type Err;

    fn from_base32(b32: &[u5]) -> Result<Self, Self::Err>;
}
Expand description

Parse/convert base32 slice to Self. It is the reciprocal of ToBase32.

Required Associated Types

The associated error which can be returned from parsing (e.g. because of bad padding).

Required Methods

Convert a base32 slice to Self.

Implementors