pub trait IntoString {
    // Required method
    fn into_string(self) -> String;
}

Required Methods§

Implementations on Foreign Types§

source§

impl IntoString for &str

source§

impl IntoString for String

Implementors§