#[repr(C)]pub struct FMOD_DSP_DESCRIPTION {Show 26 fields
pub pluginsdkversion: c_uint,
pub name: [c_char; 32],
pub version: c_uint,
pub numinputbuffers: c_int,
pub numoutputbuffers: c_int,
pub create: FMOD_DSP_CREATE_CALLBACK,
pub release: FMOD_DSP_RELEASE_CALLBACK,
pub reset: FMOD_DSP_RESET_CALLBACK,
pub read: FMOD_DSP_READ_CALLBACK,
pub process: FMOD_DSP_PROCESS_CALLBACK,
pub setposition: FMOD_DSP_SETPOSITION_CALLBACK,
pub numparameters: c_int,
pub paramdesc: *mut *mut FMOD_DSP_PARAMETER_DESC,
pub setparameterfloat: FMOD_DSP_SETPARAM_FLOAT_CALLBACK,
pub setparameterint: FMOD_DSP_SETPARAM_INT_CALLBACK,
pub setparameterbool: FMOD_DSP_SETPARAM_BOOL_CALLBACK,
pub setparameterdata: FMOD_DSP_SETPARAM_DATA_CALLBACK,
pub getparameterfloat: FMOD_DSP_GETPARAM_FLOAT_CALLBACK,
pub getparameterint: FMOD_DSP_GETPARAM_INT_CALLBACK,
pub getparameterbool: FMOD_DSP_GETPARAM_BOOL_CALLBACK,
pub getparameterdata: FMOD_DSP_GETPARAM_DATA_CALLBACK,
pub shouldiprocess: FMOD_DSP_SHOULDIPROCESS_CALLBACK,
pub userdata: *mut c_void,
pub sys_register: FMOD_DSP_SYSTEM_REGISTER_CALLBACK,
pub sys_deregister: FMOD_DSP_SYSTEM_DEREGISTER_CALLBACK,
pub sys_mix: FMOD_DSP_SYSTEM_MIX_CALLBACK,
}Fields§
§pluginsdkversion: c_uint§name: [c_char; 32]§version: c_uint§numinputbuffers: c_int§numoutputbuffers: c_int§create: FMOD_DSP_CREATE_CALLBACK§release: FMOD_DSP_RELEASE_CALLBACK§reset: FMOD_DSP_RESET_CALLBACK§read: FMOD_DSP_READ_CALLBACK§process: FMOD_DSP_PROCESS_CALLBACK§setposition: FMOD_DSP_SETPOSITION_CALLBACK§numparameters: c_int§paramdesc: *mut *mut FMOD_DSP_PARAMETER_DESC§setparameterfloat: FMOD_DSP_SETPARAM_FLOAT_CALLBACK§setparameterint: FMOD_DSP_SETPARAM_INT_CALLBACK§setparameterbool: FMOD_DSP_SETPARAM_BOOL_CALLBACK§setparameterdata: FMOD_DSP_SETPARAM_DATA_CALLBACK§getparameterfloat: FMOD_DSP_GETPARAM_FLOAT_CALLBACK§getparameterint: FMOD_DSP_GETPARAM_INT_CALLBACK§getparameterbool: FMOD_DSP_GETPARAM_BOOL_CALLBACK§getparameterdata: FMOD_DSP_GETPARAM_DATA_CALLBACK§shouldiprocess: FMOD_DSP_SHOULDIPROCESS_CALLBACK§userdata: *mut c_void§sys_register: FMOD_DSP_SYSTEM_REGISTER_CALLBACK§sys_deregister: FMOD_DSP_SYSTEM_DEREGISTER_CALLBACK§sys_mix: FMOD_DSP_SYSTEM_MIX_CALLBACKTrait Implementations§
Source§impl Clone for FMOD_DSP_DESCRIPTION
impl Clone for FMOD_DSP_DESCRIPTION
Source§fn clone(&self) -> FMOD_DSP_DESCRIPTION
fn clone(&self) -> FMOD_DSP_DESCRIPTION
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_DSP_DESCRIPTION
impl Debug for FMOD_DSP_DESCRIPTION
Source§impl Default for FMOD_DSP_DESCRIPTION
impl Default for FMOD_DSP_DESCRIPTION
Source§impl Hash for FMOD_DSP_DESCRIPTION
impl Hash for FMOD_DSP_DESCRIPTION
Source§impl PartialEq for FMOD_DSP_DESCRIPTION
impl PartialEq for FMOD_DSP_DESCRIPTION
impl Copy for FMOD_DSP_DESCRIPTION
impl Eq for FMOD_DSP_DESCRIPTION
impl StructuralPartialEq for FMOD_DSP_DESCRIPTION
Auto Trait Implementations§
impl Freeze for FMOD_DSP_DESCRIPTION
impl RefUnwindSafe for FMOD_DSP_DESCRIPTION
impl !Send for FMOD_DSP_DESCRIPTION
impl !Sync for FMOD_DSP_DESCRIPTION
impl Unpin for FMOD_DSP_DESCRIPTION
impl UnwindSafe for FMOD_DSP_DESCRIPTION
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