[][src]Struct webrtc_audio_processing_sys::NoiseSuppression

#[repr(C)]pub struct NoiseSuppression {
    pub enable: bool,
    pub suppression_level: NoiseSuppression_SuppressionLevel,
}
Noise suppression configuration.

Fields

enable: bool
Whether to use noise supression.
suppression_level: NoiseSuppression_SuppressionLevel
Determines the aggressiveness of the suppression. Increasing the level will reduce the noise level at the expense of a higher speech distortion.

Trait Implementations

impl Clone for NoiseSuppression[src]

impl Copy for NoiseSuppression[src]

impl Debug for NoiseSuppression[src]

impl Default for NoiseSuppression[src]

impl PartialEq<NoiseSuppression> for NoiseSuppression[src]

impl StructuralPartialEq for NoiseSuppression[src]

Auto Trait Implementations

Blanket Implementations

impl<T> Any for T where
    T: 'static + ?Sized
[src]

impl<T> Borrow<T> for T where
    T: ?Sized
[src]

impl<T> BorrowMut<T> for T where
    T: ?Sized
[src]

impl<T> From<T> for T[src]

impl<T, U> Into<U> for T where
    U: From<T>, 
[src]

impl<T> ToOwned for T where
    T: Clone
[src]

type Owned = T

The resulting type after obtaining ownership.

impl<T, U> TryFrom<U> for T where
    U: Into<T>, 
[src]

type Error = Infallible

The type returned in the event of a conversion error.

impl<T, U> TryInto<U> for T where
    U: TryFrom<T>, 
[src]

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.