#[repr(C)]pub struct ArithmeticCoefficients {
pub k1: FloatValue,
pub k2: FloatValue,
pub k3: FloatValue,
pub k4: FloatValue,
}Expand description
Arithmetic coefficients for composite filter (k1, k2, k3, k4). Result = k1i1i2 + k2i1 + k3i2 + k4
Fields§
§k1: FloatValue§k2: FloatValue§k3: FloatValue§k4: FloatValueTrait Implementations§
Source§impl Clone for ArithmeticCoefficients
impl Clone for ArithmeticCoefficients
Source§fn clone(&self) -> ArithmeticCoefficients
fn clone(&self) -> ArithmeticCoefficients
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 ArithmeticCoefficients
impl Debug for ArithmeticCoefficients
Source§impl Hash for ArithmeticCoefficients
impl Hash for ArithmeticCoefficients
Source§impl Ord for ArithmeticCoefficients
impl Ord for ArithmeticCoefficients
Source§fn cmp(&self, other: &ArithmeticCoefficients) -> Ordering
fn cmp(&self, other: &ArithmeticCoefficients) -> Ordering
1.21.0 · Source§fn max(self, other: Self) -> Selfwhere
Self: Sized,
fn max(self, other: Self) -> Selfwhere
Self: Sized,
Compares and returns the maximum of two values. Read more
Source§impl PartialEq for ArithmeticCoefficients
impl PartialEq for ArithmeticCoefficients
Source§impl PartialOrd for ArithmeticCoefficients
impl PartialOrd for ArithmeticCoefficients
impl Eq for ArithmeticCoefficients
impl StructuralPartialEq for ArithmeticCoefficients
Auto Trait Implementations§
impl Freeze for ArithmeticCoefficients
impl RefUnwindSafe for ArithmeticCoefficients
impl Send for ArithmeticCoefficients
impl Sync for ArithmeticCoefficients
impl Unpin for ArithmeticCoefficients
impl UnwindSafe for ArithmeticCoefficients
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