Skip to main content

TimesExtract

Trait TimesExtract 

Source
trait TimesExtract<D, R> {
    type Times;

    // Required method
    fn times_extract(self, name: &str) -> (Self, Self::Times)
       where Self: Sized;
}

Required Associated Types§

Required Methods§

Source

fn times_extract(self, name: &str) -> (Self, Self::Times)
where Self: Sized,

Implementations on Foreign Types§

Source§

impl<'scope, D, R> TimesExtract<D, R> for VecCollection<'scope, Timestamp, D, R>
where D: Clone + 'static, R: Semigroup + 'static + Debug,

Source§

type Times = Collection<'scope, Timestamp, Vec<((), Timestamp, R)>>

Source§

fn times_extract( self, name: &str, ) -> (VecCollection<'scope, Timestamp, D, R>, VecCollection<'scope, Timestamp, (), R>)

Implementors§