pub struct TimeWindowConfig {
pub window_size: Duration,
pub slide_interval: Duration,
pub watermark_delay: Duration,
pub allowed_lateness: Duration,
}Expand description
Configuration for time-based windowing
Fields§
§window_size: Duration§slide_interval: Duration§watermark_delay: Duration§allowed_lateness: DurationTrait Implementations§
Source§impl Clone for TimeWindowConfig
impl Clone for TimeWindowConfig
Source§fn clone(&self) -> TimeWindowConfig
fn clone(&self) -> TimeWindowConfig
Returns a duplicate of the value. Read more
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreSource§impl Debug for TimeWindowConfig
impl Debug for TimeWindowConfig
Auto Trait Implementations§
impl Freeze for TimeWindowConfig
impl RefUnwindSafe for TimeWindowConfig
impl Send for TimeWindowConfig
impl Sync for TimeWindowConfig
impl Unpin for TimeWindowConfig
impl UnwindSafe for TimeWindowConfig
Blanket Implementations§
Source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
Source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more