Trait Config

Source
pub trait Config: Send + Sync {
    const CONFIG: Config;
}
Expand description

Trait used for statically typed Blob encoding configs

Required Associated Constants§

Source

const CONFIG: Config

Associated base-64 config

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§

Source§

impl Config for Crypt

Source§

const CONFIG: Config = base64::CRYPT

Source§

impl Config for Standard

Source§

const CONFIG: Config = base64::STANDARD

Source§

impl Config for StandardNoPad

Source§

const CONFIG: Config = base64::STANDARD_NO_PAD

Source§

impl Config for UrlSafe

Source§

const CONFIG: Config = base64::URL_SAFE

Source§

impl Config for UrlSafeNoPad

Source§

const CONFIG: Config = base64::URL_SAFE_NO_PAD