Struct fmod::ffi::FMOD_OUTPUT_STATE
source · #[repr(C)]pub struct FMOD_OUTPUT_STATE {
pub plugindata: *mut c_void,
pub readfrommixer: Option<unsafe extern "C" fn(_: *mut FMOD_OUTPUT_STATE, _: *mut c_void, _: u32) -> FMOD_RESULT>,
pub alloc: Option<unsafe extern "C" fn(_: u32, _: u32, _: *const i8, _: i32) -> *mut c_void>,
pub free: Option<unsafe extern "C" fn(_: *mut c_void, _: *const i8, _: i32)>,
pub log: Option<unsafe extern "C" fn(_: u32, _: *const i8, _: i32, _: *const i8, _: *const i8, ...)>,
pub copyport: Option<unsafe extern "C" fn(_: *mut FMOD_OUTPUT_STATE, _: i32, _: *mut c_void, _: u32) -> FMOD_RESULT>,
pub requestreset: Option<unsafe extern "C" fn(_: *mut FMOD_OUTPUT_STATE) -> FMOD_RESULT>,
}Fields§
§plugindata: *mut c_void§readfrommixer: Option<unsafe extern "C" fn(_: *mut FMOD_OUTPUT_STATE, _: *mut c_void, _: u32) -> FMOD_RESULT>§alloc: Option<unsafe extern "C" fn(_: u32, _: u32, _: *const i8, _: i32) -> *mut c_void>§free: Option<unsafe extern "C" fn(_: *mut c_void, _: *const i8, _: i32)>§log: Option<unsafe extern "C" fn(_: u32, _: *const i8, _: i32, _: *const i8, _: *const i8, ...)>§copyport: Option<unsafe extern "C" fn(_: *mut FMOD_OUTPUT_STATE, _: i32, _: *mut c_void, _: u32) -> FMOD_RESULT>§requestreset: Option<unsafe extern "C" fn(_: *mut FMOD_OUTPUT_STATE) -> FMOD_RESULT>Trait Implementations§
source§impl Clone for FMOD_OUTPUT_STATE
impl Clone for FMOD_OUTPUT_STATE
source§fn clone(&self) -> FMOD_OUTPUT_STATE
fn clone(&self) -> FMOD_OUTPUT_STATE
Returns a copy 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 FMOD_OUTPUT_STATE
impl Debug for FMOD_OUTPUT_STATE
source§impl Default for FMOD_OUTPUT_STATE
impl Default for FMOD_OUTPUT_STATE
source§fn default() -> FMOD_OUTPUT_STATE
fn default() -> FMOD_OUTPUT_STATE
Returns the “default value” for a type. Read more
source§impl Hash for FMOD_OUTPUT_STATE
impl Hash for FMOD_OUTPUT_STATE
source§impl PartialEq for FMOD_OUTPUT_STATE
impl PartialEq for FMOD_OUTPUT_STATE
source§fn eq(&self, other: &FMOD_OUTPUT_STATE) -> bool
fn eq(&self, other: &FMOD_OUTPUT_STATE) -> bool
This method tests for
self and other values to be equal, and is used
by ==.impl Copy for FMOD_OUTPUT_STATE
impl Eq for FMOD_OUTPUT_STATE
impl StructuralPartialEq for FMOD_OUTPUT_STATE
Auto Trait Implementations§
impl Freeze for FMOD_OUTPUT_STATE
impl RefUnwindSafe for FMOD_OUTPUT_STATE
impl !Send for FMOD_OUTPUT_STATE
impl !Sync for FMOD_OUTPUT_STATE
impl Unpin for FMOD_OUTPUT_STATE
impl UnwindSafe for FMOD_OUTPUT_STATE
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