Skip to main content

Base32

Trait Base32 

Source
pub trait Base32: Sized {
    // Required methods
    fn to_base32(&self) -> String;
    fn from_base32(b: &[u8]) -> Option<Self>;
}

Required Methods§

Source

fn to_base32(&self) -> String

Source

fn from_base32(b: &[u8]) -> Option<Self>

Dyn Compatibility§

This trait is not dyn compatible.

In older versions of Rust, dyn compatibility was called "object safety".

Implementors§