Trait range_set_blaze::IntoString

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

Converts the implementing type into a String by consuming it. It is intended for types where items are Debug-able.

Required Methods§

source

fn into_string(self) -> String

cmk doc

Implementors§

source§

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