pub trait ToBase64 {
// Required method
fn to_base64(&self, config: Config) -> String;
}
Expand description
A trait for converting a value to base64 encoding.
pub trait ToBase64 {
// Required method
fn to_base64(&self, config: Config) -> String;
}
A trait for converting a value to base64 encoding.