[][src]Struct audir_sles::SLEqualizerItf_

#[repr(C)]pub struct SLEqualizerItf_ {
    pub SetEnabled: Option<unsafe extern "C" fn(self_: SLEqualizerItf, enabled: SLboolean) -> SLresult>,
    pub IsEnabled: Option<unsafe extern "C" fn(self_: SLEqualizerItf, pEnabled: *mut SLboolean) -> SLresult>,
    pub GetNumberOfBands: Option<unsafe extern "C" fn(self_: SLEqualizerItf, pAmount: *mut SLuint16) -> SLresult>,
    pub GetBandLevelRange: Option<unsafe extern "C" fn(self_: SLEqualizerItf, pMin: *mut SLmillibel, pMax: *mut SLmillibel) -> SLresult>,
    pub SetBandLevel: Option<unsafe extern "C" fn(self_: SLEqualizerItf, band: SLuint16, level: SLmillibel) -> SLresult>,
    pub GetBandLevel: Option<unsafe extern "C" fn(self_: SLEqualizerItf, band: SLuint16, pLevel: *mut SLmillibel) -> SLresult>,
    pub GetCenterFreq: Option<unsafe extern "C" fn(self_: SLEqualizerItf, band: SLuint16, pCenter: *mut SLmilliHertz) -> SLresult>,
    pub GetBandFreqRange: Option<unsafe extern "C" fn(self_: SLEqualizerItf, band: SLuint16, pMin: *mut SLmilliHertz, pMax: *mut SLmilliHertz) -> SLresult>,
    pub GetBand: Option<unsafe extern "C" fn(self_: SLEqualizerItf, frequency: SLmilliHertz, pBand: *mut SLuint16) -> SLresult>,
    pub GetCurrentPreset: Option<unsafe extern "C" fn(self_: SLEqualizerItf, pPreset: *mut SLuint16) -> SLresult>,
    pub UsePreset: Option<unsafe extern "C" fn(self_: SLEqualizerItf, index: SLuint16) -> SLresult>,
    pub GetNumberOfPresets: Option<unsafe extern "C" fn(self_: SLEqualizerItf, pNumPresets: *mut SLuint16) -> SLresult>,
    pub GetPresetName: Option<unsafe extern "C" fn(self_: SLEqualizerItf, index: SLuint16, pSize: *mut SLuint16, pName: *mut SLchar) -> SLresult>,
}

Fields

SetEnabled: Option<unsafe extern "C" fn(self_: SLEqualizerItf, enabled: SLboolean) -> SLresult>IsEnabled: Option<unsafe extern "C" fn(self_: SLEqualizerItf, pEnabled: *mut SLboolean) -> SLresult>GetNumberOfBands: Option<unsafe extern "C" fn(self_: SLEqualizerItf, pAmount: *mut SLuint16) -> SLresult>GetBandLevelRange: Option<unsafe extern "C" fn(self_: SLEqualizerItf, pMin: *mut SLmillibel, pMax: *mut SLmillibel) -> SLresult>SetBandLevel: Option<unsafe extern "C" fn(self_: SLEqualizerItf, band: SLuint16, level: SLmillibel) -> SLresult>GetBandLevel: Option<unsafe extern "C" fn(self_: SLEqualizerItf, band: SLuint16, pLevel: *mut SLmillibel) -> SLresult>GetCenterFreq: Option<unsafe extern "C" fn(self_: SLEqualizerItf, band: SLuint16, pCenter: *mut SLmilliHertz) -> SLresult>GetBandFreqRange: Option<unsafe extern "C" fn(self_: SLEqualizerItf, band: SLuint16, pMin: *mut SLmilliHertz, pMax: *mut SLmilliHertz) -> SLresult>GetBand: Option<unsafe extern "C" fn(self_: SLEqualizerItf, frequency: SLmilliHertz, pBand: *mut SLuint16) -> SLresult>GetCurrentPreset: Option<unsafe extern "C" fn(self_: SLEqualizerItf, pPreset: *mut SLuint16) -> SLresult>UsePreset: Option<unsafe extern "C" fn(self_: SLEqualizerItf, index: SLuint16) -> SLresult>GetNumberOfPresets: Option<unsafe extern "C" fn(self_: SLEqualizerItf, pNumPresets: *mut SLuint16) -> SLresult>GetPresetName: Option<unsafe extern "C" fn(self_: SLEqualizerItf, index: SLuint16, pSize: *mut SLuint16, pName: *mut SLchar) -> SLresult>

Trait Implementations

impl Clone for SLEqualizerItf_[src]

impl Copy for SLEqualizerItf_[src]

impl Debug for SLEqualizerItf_[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.