pub trait WindowSetOps {
    // Required methods
    fn build_iter(&self) -> PyGenericIterator;
    fn time_index(&self, center: bool) -> PyGenericIterable;
}

Required Methods§

Implementations on Foreign Types§

source§

impl<T> WindowSetOps for WindowSet<T>where T: TimeOps + Clone + Sync + 'static + Send, T::WindowedViewType: IntoPyObject + Send,

Implementors§