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

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more

Formats the value using the given formatter. Read more

Returns the “default value” for a type. Read more

This method tests for self and other values to be equal, and is used by ==. Read more

This method tests for !=.

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 resulting type after obtaining ownership.

Creates owned data from borrowed data, usually by cloning. Read more

Uses borrowed data to replace owned data, usually by cloning. Read more

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.