Trait kairos::iter::Until

source ·
pub trait Until: Iterator<Item = Result<TimeType>> + Sized {
    // Required method
    fn until(self, ending: NaiveDateTime) -> UntilIter<Self> ;
}

Required Methods§

source

fn until(self, ending: NaiveDateTime) -> UntilIter<Self>

Object Safety§

This trait is not object safe.

Implementors§

source§

impl<I> Until for I
where I: Iterator<Item = Result<TimeType>>,