[][src]Trait swim_codec::base64::EncodeBase64

pub trait EncodeBase64 {
    fn encode_base64_output<O>(
        &self,
        output: O,
        alphabet: Base64Alphabet
    ) -> Result<O::Out, O::Err>
    where
        O: Output<Token = char>
; fn encode_base64<I, O>(&self, output: I) -> O::Out
    where
        I: IntoOutput<IntoOut = O>,
        O: Output<Token = char>,
        O::Err: Debug
, { ... } }

Required methods

fn encode_base64_output<O>(
    &self,
    output: O,
    alphabet: Base64Alphabet
) -> Result<O::Out, O::Err> where
    O: Output<Token = char>, 

Loading content...

Provided methods

fn encode_base64<I, O>(&self, output: I) -> O::Out where
    I: IntoOutput<IntoOut = O>,
    O: Output<Token = char>,
    O::Err: Debug

Loading content...

Implementors

Loading content...