Trait Alphabet

Source
pub trait Alphabet {
    const CHARS: [u8; 64];
}
Expand description

Defines a base64 alphabet

Required Associated Constants§

Source

const CHARS: [u8; 64]

Characters making up the alphabet

Dyn Compatibility§

This trait is not dyn compatible.

In older versions of Rust, dyn compatibility was called "object safety", so this trait is not object safe.

Implementors§