IntoString

Trait IntoString 

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

Converts the implementing type into a String by consuming it.

Required Methods§

Source

fn into_string(self) -> String

Consumes the implementing type and converts it into a String.

Implementors§

Source§

impl<T, I> IntoString for I
where T: Debug, I: Iterator<Item = T>,