Trait std::to_str::IntoStr[src]

pub trait IntoStr {
    fn into_str(self) -> String;
}

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

Required Methods

fn into_str(self) -> String

Consume and convert to a string.

Implementors