pub trait TumblingWindow: Clone {
    // Required method
    fn same_window(&self, lhs: &Tick, rhs: &Tick) -> bool;
}
Expand description

Tumbling window mode.

Required Methods§

source

fn same_window(&self, lhs: &Tick, rhs: &Tick) -> bool

Is in the same window.

Object Safety§

This trait is not object safe.

Implementors§