Trait jwt::ToBase64

source ·
pub trait ToBase64 {
    // Required method
    fn to_base64(&self) -> Result<Cow<'_, str>, Error>;
}
Expand description

A trait used to convert objects in base64 encoding. The return type can be either owned if the header is dynamic, or it can be borrowed if the header is a static, pre-computed value. It is implemented automatically for every type that implements Serialize. as a base64 encoding of the object’s JSON representation.

Required Methods§

source

fn to_base64(&self) -> Result<Cow<'_, str>, Error>

Implementors§