Trait qtmd::Iter

source ·
pub trait Iter<Item>: Iterator<Item = Item> {
    // Provided method
    fn qtmd(self) -> Qtmd<Item, Self> 
       where Self: Sized { ... }
}

Provided Methods§

source

fn qtmd(self) -> Qtmd<Item, Self>
where Self: Sized,

Examples found in repository?
examples/iter.rs (line 5)
4
5
6
7
8
fn main() {
    for _ in (0..).take(10000).qtmd().style(Style::Balloon) {
        sleep(Duration::from_millis(1));
    }
}

Implementors§

source§

impl<Item, Iter: Iterator<Item = Item>> Iter<Item> for Iter