pub trait WriteBase32 {
type Err: Debug;
// Required method
fn write_u5(&mut self, data: u5) -> Result<(), Self::Err>;
// Provided method
fn write(&mut self, data: &[u5]) -> Result<(), Self::Err> { ... }
}Expand description
Interface to write u5s into a sink
Required Associated Types§
Required Methods§
Provided Methods§
Dyn Compatibility§
This trait is dyn compatible.
In older versions of Rust, dyn compatibility was called "object safety".