pub struct DspStateFunctions {
pub alloc: FMOD_DSP_ALLOC_FUNC,
pub realloc: FMOD_DSP_REALLOC_FUNC,
pub free: FMOD_DSP_FREE_FUNC,
pub getsamplerate: FMOD_DSP_GETSAMPLERATE_FUNC,
pub getblocksize: FMOD_DSP_GETBLOCKSIZE_FUNC,
pub dft: DspStateDftFunctions,
pub pan: DspStatePanFunctions,
pub getspeakermode: FMOD_DSP_GETSPEAKERMODE_FUNC,
pub getclock: FMOD_DSP_GETCLOCK_FUNC,
pub getlistenerattributes: FMOD_DSP_GETLISTENERATTRIBUTES_FUNC,
pub log: FMOD_DSP_LOG_FUNC,
pub getuserdata: FMOD_DSP_GETUSERDATA_FUNC,
}Fields§
§alloc: FMOD_DSP_ALLOC_FUNC§realloc: FMOD_DSP_REALLOC_FUNC§free: FMOD_DSP_FREE_FUNC§getsamplerate: FMOD_DSP_GETSAMPLERATE_FUNC§getblocksize: FMOD_DSP_GETBLOCKSIZE_FUNC§dft: DspStateDftFunctions§pan: DspStatePanFunctions§getspeakermode: FMOD_DSP_GETSPEAKERMODE_FUNC§getclock: FMOD_DSP_GETCLOCK_FUNC§getlistenerattributes: FMOD_DSP_GETLISTENERATTRIBUTES_FUNC§log: FMOD_DSP_LOG_FUNC§getuserdata: FMOD_DSP_GETUSERDATA_FUNCTrait Implementations§
Source§impl Clone for DspStateFunctions
impl Clone for DspStateFunctions
Source§fn clone(&self) -> DspStateFunctions
fn clone(&self) -> DspStateFunctions
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 DspStateFunctions
impl Debug for DspStateFunctions
Source§impl Into<FMOD_DSP_STATE_FUNCTIONS> for DspStateFunctions
impl Into<FMOD_DSP_STATE_FUNCTIONS> for DspStateFunctions
Source§fn into(self) -> FMOD_DSP_STATE_FUNCTIONS
fn into(self) -> FMOD_DSP_STATE_FUNCTIONS
Converts this type into the (usually inferred) input type.
Auto Trait Implementations§
impl Freeze for DspStateFunctions
impl RefUnwindSafe for DspStateFunctions
impl Send for DspStateFunctions
impl Sync for DspStateFunctions
impl Unpin for DspStateFunctions
impl UnwindSafe for DspStateFunctions
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