Skip to main content

IntoEncodedString

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.

Dyn Compatibility§

This trait is dyn compatible.

In older versions of Rust, dyn compatibility was called "object safety".

Implementations on Foreign Types§

Source§

impl IntoEncodedString for String

Source§

impl IntoEncodedString for Vec<u8>

Implementors§