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

Required Methods§

source

fn to_string(&self) -> String

Implementors§