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

pub trait ToString {
    fn to_string(&self) -> String;
}

A generic trait for converting a value to a string

Required Methods

fn to_string(&self) -> String

Converts the value of self to an owned string

Implementors