#[repr(C)]pub struct SLAndroidEffectItf_ {
pub CreateEffect: Option<unsafe extern "C" fn(self_: SLAndroidEffectItf, effectImplementationId: SLInterfaceID) -> SLresult>,
pub ReleaseEffect: Option<unsafe extern "C" fn(self_: SLAndroidEffectItf, effectImplementationId: SLInterfaceID) -> SLresult>,
pub SetEnabled: Option<unsafe extern "C" fn(self_: SLAndroidEffectItf, effectImplementationId: SLInterfaceID, enabled: SLboolean) -> SLresult>,
pub IsEnabled: Option<unsafe extern "C" fn(self_: SLAndroidEffectItf, effectImplementationId: SLInterfaceID, pEnabled: *mut SLboolean) -> SLresult>,
pub SendCommand: Option<unsafe extern "C" fn(self_: SLAndroidEffectItf, effectImplementationId: SLInterfaceID, command: SLuint32, commandSize: SLuint32, pCommandData: *mut c_void, replySize: *mut SLuint32, pReplyData: *mut c_void) -> SLresult>,
}Expand description
Android Effect interface methods
Fields§
§CreateEffect: Option<unsafe extern "C" fn(self_: SLAndroidEffectItf, effectImplementationId: SLInterfaceID) -> SLresult>§ReleaseEffect: Option<unsafe extern "C" fn(self_: SLAndroidEffectItf, effectImplementationId: SLInterfaceID) -> SLresult>§SetEnabled: Option<unsafe extern "C" fn(self_: SLAndroidEffectItf, effectImplementationId: SLInterfaceID, enabled: SLboolean) -> SLresult>§IsEnabled: Option<unsafe extern "C" fn(self_: SLAndroidEffectItf, effectImplementationId: SLInterfaceID, pEnabled: *mut SLboolean) -> SLresult>§SendCommand: Option<unsafe extern "C" fn(self_: SLAndroidEffectItf, effectImplementationId: SLInterfaceID, command: SLuint32, commandSize: SLuint32, pCommandData: *mut c_void, replySize: *mut SLuint32, pReplyData: *mut c_void) -> SLresult>Trait Implementations§
Source§impl Clone for SLAndroidEffectItf_
impl Clone for SLAndroidEffectItf_
Source§fn clone(&self) -> SLAndroidEffectItf_
fn clone(&self) -> SLAndroidEffectItf_
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 SLAndroidEffectItf_
impl Debug for SLAndroidEffectItf_
impl Copy for SLAndroidEffectItf_
Auto Trait Implementations§
impl Freeze for SLAndroidEffectItf_
impl RefUnwindSafe for SLAndroidEffectItf_
impl Send for SLAndroidEffectItf_
impl Sync for SLAndroidEffectItf_
impl Unpin for SLAndroidEffectItf_
impl UnwindSafe for SLAndroidEffectItf_
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