[src]

Trait std::to_str::IntoStr

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

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

Required Methods

fn into_str(self) -> ~str

Consume and convert to a string.

Implementors