Trait std::string::IntoStringDeprecated [-]  [+] [src]

pub trait IntoString {
    fn into_string(self) -> String;
}

Trait for converting a type to a string, consuming it in the process.

Required Methods

fn into_string(self) -> String

Consume and convert to a string.

Implementors