pub struct FormerMeterState {
pub analog_inputs: Vec<i32>,
pub spdif_inputs: Vec<i32>,
pub adat_inputs: Vec<i32>,
pub stream_inputs: Vec<i32>,
pub analog_outputs: Vec<i32>,
pub spdif_outputs: Vec<i32>,
pub adat_outputs: Vec<i32>,
}Expand description
State of hardware meter.
Each value of 32 bit integer is between 0x00000000 and 0x7fffff00 to represent -90.03 and 0.00 dB. When reaching saturation, 1 byte in LSB side represent ratio of overload.
Fields
analog_inputs: Vec<i32>spdif_inputs: Vec<i32>adat_inputs: Vec<i32>stream_inputs: Vec<i32>analog_outputs: Vec<i32>spdif_outputs: Vec<i32>adat_outputs: Vec<i32>Trait Implementations
sourceimpl Clone for FormerMeterState
impl Clone for FormerMeterState
sourcefn clone(&self) -> FormerMeterState
fn clone(&self) -> FormerMeterState
Returns a copy of the value. Read more
1.0.0 · sourcefn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from source. Read more
sourceimpl Debug for FormerMeterState
impl Debug for FormerMeterState
sourceimpl Default for FormerMeterState
impl Default for FormerMeterState
sourcefn default() -> FormerMeterState
fn default() -> FormerMeterState
Returns the “default value” for a type. Read more
sourceimpl PartialEq<FormerMeterState> for FormerMeterState
impl PartialEq<FormerMeterState> for FormerMeterState
sourcefn eq(&self, other: &FormerMeterState) -> bool
fn eq(&self, other: &FormerMeterState) -> bool
This method tests for self and other values to be equal, and is used
by ==. Read more
sourcefn ne(&self, other: &FormerMeterState) -> bool
fn ne(&self, other: &FormerMeterState) -> bool
This method tests for !=.
impl Eq for FormerMeterState
impl StructuralEq for FormerMeterState
impl StructuralPartialEq for FormerMeterState
Auto Trait Implementations
impl RefUnwindSafe for FormerMeterState
impl Send for FormerMeterState
impl Sync for FormerMeterState
impl Unpin for FormerMeterState
impl UnwindSafe for FormerMeterState
Blanket Implementations
sourceimpl<T> BorrowMut<T> for T where
T: ?Sized,
impl<T> BorrowMut<T> for T where
T: ?Sized,
const: unstable · sourcefn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more