pub struct Threshold {
    pub low: u16,
    pub high: u16,
    pub window: Window,
}
Expand description

Threshold sturcture defining a threshold.

Fields

low: u16

The lower bound of the threshold window.

high: u16

The upper bound of the threshold window.

window: Window

The window thresholding behavior.

Implementations

Create a new threshold with the given low threshold, high threshold and applied to the given window.

Arguments
  • low - Lower bound of the threshold window.
  • high - Upper bound of the threshold window.
  • window - The window thresholding behavior.

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

Returns the argument unchanged.

Calls U::from(self).

That is, this conversion is whatever the implementation of From<T> for U chooses to do.

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.