pub struct SlidingWindow {
    pub views: Vec<Box<dyn View>>,
}
Expand description

A Sliding Window holding any number of Sliding Features (Views)

Fields

views: Vec<Box<dyn View>>

A Vector of individual, chainable sliding windows (View)

Implementations

Create a new, empty SlidingWindow

Update all the Views with a new value

Return the last values from all Views

Add the given View

Auto Trait Implementations

Blanket Implementations

Gets the TypeId of self. Read more

Immutably borrows from an owned value. Read more

Mutably borrows from an owned value. Read more

Performs the conversion.

Performs the conversion.

The type returned in the event of a conversion error.

Performs the conversion.

The type returned in the event of a conversion error.

Performs the conversion.