[src]

Trait std::to_str::ToStr

pub trait ToStr {
    fn to_str(&self) -> ~str;
}

A generic trait for converting a value to a string

Required Methods

fn to_str(&self) -> ~str

Converts the value of self to an owned string

Implementors