Trait JoinableIterator

Source
pub trait JoinableIterator: Iterator {
    // Provided method
    fn join(&mut self, sep: &str) -> String
       where Self::Item: Display { ... }
}
Expand description

An Iterator implementation that provides a join method

Provided Methods§

Source

fn join(&mut self, sep: &str) -> String
where Self::Item: Display,

Implementations on Foreign Types§

Source§

impl<'a, VALUE> JoinableIterator for Keys<'a, String, VALUE>

Implementors§