pub enum NoiseSuppressionLevel {
Low,
Moderate,
High,
VeryHigh,
}
Expand description
A level of noise suppression.
Variants§
Low
Lower suppression level.
Moderate
Moderate suppression level.
High
Higher suppression level.
VeryHigh
Even higher suppression level.
Trait Implementations§
Source§impl Clone for NoiseSuppressionLevel
impl Clone for NoiseSuppressionLevel
Source§fn clone(&self) -> NoiseSuppressionLevel
fn clone(&self) -> NoiseSuppressionLevel
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 NoiseSuppressionLevel
impl Debug for NoiseSuppressionLevel
Source§impl From<NoiseSuppressionLevel> for NoiseSuppression_SuppressionLevel
impl From<NoiseSuppressionLevel> for NoiseSuppression_SuppressionLevel
Source§fn from(other: NoiseSuppressionLevel) -> NoiseSuppression_SuppressionLevel
fn from(other: NoiseSuppressionLevel) -> NoiseSuppression_SuppressionLevel
Converts to this type from the input type.
Source§impl PartialEq for NoiseSuppressionLevel
impl PartialEq for NoiseSuppressionLevel
impl Copy for NoiseSuppressionLevel
impl StructuralPartialEq for NoiseSuppressionLevel
Auto Trait Implementations§
impl Freeze for NoiseSuppressionLevel
impl RefUnwindSafe for NoiseSuppressionLevel
impl Send for NoiseSuppressionLevel
impl Sync for NoiseSuppressionLevel
impl Unpin for NoiseSuppressionLevel
impl UnwindSafe for NoiseSuppressionLevel
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