pub struct MicrophoneControls {
    pub dynamic_gain: Option<u16>,
    pub condenser_gain: Option<u16>,
    pub jack_gain: Option<u16>,
}

Fields

dynamic_gain: Option<u16>

Set the gain of the plugged in dynamic (XLR) microphone. Value is in decibels and recommended to be lower than 72dB.

condenser_gain: Option<u16>

Set the gain of the plugged in condenser (XLR with phantom power) microphone. Value is in decibels and recommended to be lower than 72dB.

jack_gain: Option<u16>

Set the gain of the plugged in jack (3.5mm) microphone. Value is in decibels and recommended to be lower than 72dB.

Trait Implementations

Append to [App] so it can instantiate Self. Read more

Append to [App] so it can update self. Read more

Formats the value using the given formatter. Read more

Instantiate Self from [ArgMatches], parsing the arguments as needed. Read more

Assign values from ArgMatches to self.

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.