[][src]Struct audir_sles::SLObjectItf_

#[repr(C)]pub struct SLObjectItf_ {
    pub Realize: Option<unsafe extern "C" fn(self_: SLObjectItf, async_: SLboolean) -> SLresult>,
    pub Resume: Option<unsafe extern "C" fn(self_: SLObjectItf, async_: SLboolean) -> SLresult>,
    pub GetState: Option<unsafe extern "C" fn(self_: SLObjectItf, pState: *mut SLuint32) -> SLresult>,
    pub GetInterface: Option<unsafe extern "C" fn(self_: SLObjectItf, iid: SLInterfaceID, pInterface: *mut c_void) -> SLresult>,
    pub RegisterCallback: Option<unsafe extern "C" fn(self_: SLObjectItf, callback: slObjectCallback, pContext: *mut c_void) -> SLresult>,
    pub AbortAsyncOperation: Option<unsafe extern "C" fn(self_: SLObjectItf)>,
    pub Destroy: Option<unsafe extern "C" fn(self_: SLObjectItf)>,
    pub SetPriority: Option<unsafe extern "C" fn(self_: SLObjectItf, priority: SLuint32) -> SLresult>,
    pub GetPriority: Option<unsafe extern "C" fn(self_: SLObjectItf, pPriority: *mut SLuint32) -> SLresult>,
    pub SetLossOfControlInterfaces: Option<unsafe extern "C" fn(self_: SLObjectItf, numInterfaces: SLuint16, pInterfaceIDs: *const SLInterfaceID, enabled: SLboolean) -> SLresult>,
}

Fields

Realize: Option<unsafe extern "C" fn(self_: SLObjectItf, async_: SLboolean) -> SLresult>Resume: Option<unsafe extern "C" fn(self_: SLObjectItf, async_: SLboolean) -> SLresult>GetState: Option<unsafe extern "C" fn(self_: SLObjectItf, pState: *mut SLuint32) -> SLresult>GetInterface: Option<unsafe extern "C" fn(self_: SLObjectItf, iid: SLInterfaceID, pInterface: *mut c_void) -> SLresult>RegisterCallback: Option<unsafe extern "C" fn(self_: SLObjectItf, callback: slObjectCallback, pContext: *mut c_void) -> SLresult>AbortAsyncOperation: Option<unsafe extern "C" fn(self_: SLObjectItf)>Destroy: Option<unsafe extern "C" fn(self_: SLObjectItf)>SetPriority: Option<unsafe extern "C" fn(self_: SLObjectItf, priority: SLuint32) -> SLresult>GetPriority: Option<unsafe extern "C" fn(self_: SLObjectItf, pPriority: *mut SLuint32) -> SLresult>SetLossOfControlInterfaces: Option<unsafe extern "C" fn(self_: SLObjectItf, numInterfaces: SLuint16, pInterfaceIDs: *const SLInterfaceID, enabled: SLboolean) -> SLresult>

Trait Implementations

impl Clone for SLObjectItf_[src]

impl Copy for SLObjectItf_[src]

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