pub trait ToBase64 { // Required method fn to_base64(&self) -> Result<Cow<'_, str>>; }
Trait for converting types to base64-encoded JSON.
Convert the type to a base64-encoded JSON string.