Trait IntoEncodedString

Source
pub trait IntoEncodedString {
    // Required method
    fn into_encoded_string(self) -> String;
}
Expand description

Encodes data into a string.

Required Methods§

Source

fn into_encoded_string(self) -> String

Encodes the data.

Implementations on Foreign Types§

Source§

impl IntoEncodedString for String

Source§

impl IntoEncodedString for Vec<u8>

Implementors§