pub trait WriteBase32 {
    type Err: Debug;
    fn write_u5(&mut self, data: u5) -> Result<(), Self::Err>;

    fn write(&mut self, data: &[u5]) -> Result<(), Self::Err> { ... }
}
Expand description

Interface to write u5s into a sink

Associated Types

Write error

Required methods

Write a single u5

Provided methods

Write a u5 slice

Implementations on Foreign Types

Implementors