Struct signalo_filters::sink::Min[][src]

pub struct Min<T> { /* fields omitted */ }

A sink that computes the min and max of all received values of a signal.

Trait Implementations

impl<T: Clone> Clone for Min<T>
[src]

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more

impl<T: Default> Default for Min<T>
[src]

Returns the "default value" for a type. Read more

impl<T: Debug> Debug for Min<T>
[src]

Formats the value using the given formatter. Read more

impl<T> Sink<T> for Min<T> where
    T: Copy + PartialOrd
[src]

The sink's output type.

Processes the input value.

Consumes self, returning an accumulated output.

Auto Trait Implementations

impl<T> Send for Min<T> where
    T: Send

impl<T> Sync for Min<T> where
    T: Sync