Trait intovec::IntoString [] [src]

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

Anything convertible into a String with or without copies, but avoiding them if possible.

Required Methods

Convert Self into a String

Implementations on Foreign Types

impl IntoString for String
[src]

impl<'a> IntoString for &'a str
[src]

Implementors