pub struct DynamicsBandState {Show 14 fields
pub id: u64,
pub min_frequency: u32,
pub max_frequency: u32,
pub threshold_db: f32,
pub threshold_type: ThresholdType,
pub ratio: f32,
pub knee_width_db: Option<f32>,
pub attack: Option<zx_duration_t>,
pub release: Option<zx_duration_t>,
pub output_gain_db: Option<f32>,
pub input_gain_db: Option<f32>,
pub level_type: Option<LevelType>,
pub lookahead: Option<zx_duration_t>,
pub linked_channels: Option<bool>,
}
Fields§
§id: u64
§min_frequency: u32
§max_frequency: u32
§threshold_db: f32
§threshold_type: ThresholdType
§ratio: f32
§knee_width_db: Option<f32>
§attack: Option<zx_duration_t>
§release: Option<zx_duration_t>
§output_gain_db: Option<f32>
§input_gain_db: Option<f32>
§level_type: Option<LevelType>
§lookahead: Option<zx_duration_t>
§linked_channels: Option<bool>
Trait Implementations§
Source§impl Clone for DynamicsBandState
impl Clone for DynamicsBandState
Source§fn clone(&self) -> DynamicsBandState
fn clone(&self) -> DynamicsBandState
Returns a copy 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 DynamicsBandState
impl Debug for DynamicsBandState
Source§impl From<DynamicsBandState> for DynamicsBandState
impl From<DynamicsBandState> for DynamicsBandState
Source§fn from(value: DynamicsBandState) -> Self
fn from(value: DynamicsBandState) -> Self
Converts to this type from the input type.
Source§impl PartialEq for DynamicsBandState
impl PartialEq for DynamicsBandState
Source§impl TryFrom<DynamicsBandState> for DynamicsBandState
impl TryFrom<DynamicsBandState> for DynamicsBandState
impl StructuralPartialEq for DynamicsBandState
Auto Trait Implementations§
impl Freeze for DynamicsBandState
impl RefUnwindSafe for DynamicsBandState
impl Send for DynamicsBandState
impl Sync for DynamicsBandState
impl Unpin for DynamicsBandState
impl UnwindSafe for DynamicsBandState
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
Source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
Source§impl<T, D> Encode<Ambiguous1, D> for Twhere
D: ResourceDialect,
impl<T, D> Encode<Ambiguous1, D> for Twhere
D: ResourceDialect,
Source§impl<T, D> Encode<Ambiguous2, D> for Twhere
D: ResourceDialect,
impl<T, D> Encode<Ambiguous2, D> for Twhere
D: ResourceDialect,
Source§impl<T> IntoEither for T
impl<T> IntoEither for T
Source§fn into_either(self, into_left: bool) -> Either<Self, Self>
fn into_either(self, into_left: bool) -> Either<Self, Self>
Converts
self
into a Left
variant of Either<Self, Self>
if into_left
is true
.
Converts self
into a Right
variant of Either<Self, Self>
otherwise. Read moreSource§fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
Converts
self
into a Left
variant of Either<Self, Self>
if into_left(&self)
returns true
.
Converts self
into a Right
variant of Either<Self, Self>
otherwise. Read more