Trait IntoEncodedString

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

Encodes data into a string.

Required Methods§

fn into_encoded_string(self) -> String

Encodes the data.

Implementations on Foreign Types§

§

impl IntoEncodedString for String

§

impl IntoEncodedString for Vec<u8>

Implementors§