pub struct Units<T> {
pub t: T,
pub x: T,
pub y: T,
}Expand description
Units for a biquad
In desired (e.g. SI) units per machine (e.g. full scale or LSB) unit
Fields§
§t: TUpdate period
One update interval corresponds to this many physical units (e.g. seconds).
x: TInput unit
Unit input in machine units corresponds to this many physical units.
y: TOutput unit
Unit output in machine units corresponds to this many physical units
Trait Implementations§
Auto Trait Implementations§
impl<T> Freeze for Units<T>where
T: Freeze,
impl<T> RefUnwindSafe for Units<T>where
T: RefUnwindSafe,
impl<T> Send for Units<T>where
T: Send,
impl<T> Sync for Units<T>where
T: Sync,
impl<T> Unpin for Units<T>where
T: Unpin,
impl<T> UnwindSafe for Units<T>where
T: UnwindSafe,
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