pub trait IntoEncodedString {
// Required method
fn into_encoded_string(self) -> String;
}Expand description
Encodes data into a string.
Required Methods§
Sourcefn into_encoded_string(self) -> String
fn into_encoded_string(self) -> String
Encodes the data.