[][src]Struct webrtc_audio_processing_sys::InitializationConfig

#[repr(C)]pub struct InitializationConfig {
    pub num_capture_channels: c_int,
    pub num_render_channels: c_int,
    pub enable_experimental_agc: bool,
    pub enable_intelligibility_enhancer: bool,
}
A configuration used only when initializing a Processor.

Fields

num_capture_channels: c_intnum_render_channels: c_intenable_experimental_agc: boolenable_intelligibility_enhancer: bool

Trait Implementations

impl Clone for InitializationConfig[src]

impl Copy for InitializationConfig[src]

impl Debug for InitializationConfig[src]

impl Default for InitializationConfig[src]

impl PartialEq<InitializationConfig> for InitializationConfig[src]

impl StructuralPartialEq for InitializationConfig[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.