pub trait WithoutFilter<M: Matcher>: Iterator<Item = Result<TimeType>> + Sized {
    // Required method
    fn without(self, matcher: M) -> WithoutIter<Self, M> ;
}

Required Methods§

source

fn without(self, matcher: M) -> WithoutIter<Self, M>

Object Safety§

This trait is not object safe.

Implementors§

source§

impl<I, M> WithoutFilter<M> for I
where I: Iterator<Item = Result<TimeType>>, M: Matcher,