The ToStr trait for converting to strings

Trait ToStr

A generic trait for converting a value to a string

Method to_str

fn to_str(&self) -> ~str

Converts the value of self to an owned string

Trait ToStrConsume

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

Method into_str

fn into_str(self) -> ~str

Cosume and convert to a string.

Implementation of ToStr for ()

Method to_str

fn to_str(&self) -> ~str

Implementation of ToStr for (A,) where <A: ToStr>

Method to_str

fn to_str(&self) -> ~str

Implementation of ToStr for HashMap<A, B> where <A: ToStr + Hash + Eq, B: ToStr + Hash + Eq>

Method to_str

fn to_str(&self) -> ~str

Implementation of ToStr for HashSet<A> where <A: ToStr + Hash + Eq>

Method to_str

fn to_str(&self) -> ~str

Implementation of ToStr for (A, B) where <A: ToStr, B: ToStr>

Method to_str

fn to_str(&self) -> ~str

Implementation of ToStr for (A, B, C) where <A: ToStr, B: ToStr, C: ToStr>

Method to_str

fn to_str(&self) -> ~str

Implementation of ToStr for &'self [A] where <'self, A: ToStr>

Method to_str

fn to_str(&self) -> ~str

Implementation of ToStr for ~[A] where <A: ToStr>

Method to_str

fn to_str(&self) -> ~str

Implementation of ToStr for @[A] where <A: ToStr>

Method to_str

fn to_str(&self) -> ~str