pub struct AnalogMicGainEmulation {
pub initial_level: u8,
}Expand description
Analog mic gain emulation for capture level adjustment.
Fields§
§initial_level: u8Initial analog gain level to use for the emulated analog gain. Must be in the range [0…255].
Trait Implementations§
Source§impl Clone for AnalogMicGainEmulation
impl Clone for AnalogMicGainEmulation
Source§fn clone(&self) -> AnalogMicGainEmulation
fn clone(&self) -> AnalogMicGainEmulation
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 AnalogMicGainEmulation
impl Debug for AnalogMicGainEmulation
Source§impl Default for AnalogMicGainEmulation
impl Default for AnalogMicGainEmulation
Source§impl<'de> Deserialize<'de> for AnalogMicGainEmulationwhere
AnalogMicGainEmulation: Default,
impl<'de> Deserialize<'de> for AnalogMicGainEmulationwhere
AnalogMicGainEmulation: Default,
Source§fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
Source§impl JsonSchema for AnalogMicGainEmulation
impl JsonSchema for AnalogMicGainEmulation
Source§fn schema_id() -> Cow<'static, str>
fn schema_id() -> Cow<'static, str>
Returns a string that uniquely identifies the schema produced by this type. Read more
Source§fn json_schema(generator: &mut SchemaGenerator) -> Schema
fn json_schema(generator: &mut SchemaGenerator) -> Schema
Generates a JSON Schema for this type. Read more
Source§fn inline_schema() -> bool
fn inline_schema() -> bool
Whether JSON Schemas generated for this type should be included directly in parent schemas,
rather than being re-used where possible using the
$ref keyword. Read moreSource§impl PartialEq for AnalogMicGainEmulation
impl PartialEq for AnalogMicGainEmulation
Source§impl Serialize for AnalogMicGainEmulation
impl Serialize for AnalogMicGainEmulation
impl Copy for AnalogMicGainEmulation
impl StructuralPartialEq for AnalogMicGainEmulation
Auto Trait Implementations§
impl Freeze for AnalogMicGainEmulation
impl RefUnwindSafe for AnalogMicGainEmulation
impl Send for AnalogMicGainEmulation
impl Sync for AnalogMicGainEmulation
impl Unpin for AnalogMicGainEmulation
impl UnsafeUnpin for AnalogMicGainEmulation
impl UnwindSafe for AnalogMicGainEmulation
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