#[repr(C)]pub struct FMOD_CODEC_STATE {
pub plugindata: *mut c_void,
pub waveformat: *mut FMOD_CODEC_WAVEFORMAT,
pub functions: *mut FMOD_CODEC_STATE_FUNCTIONS,
pub numsubsounds: c_int,
}
Fields§
§plugindata: *mut c_void
§waveformat: *mut FMOD_CODEC_WAVEFORMAT
§functions: *mut FMOD_CODEC_STATE_FUNCTIONS
§numsubsounds: c_int
Trait Implementations§
Source§impl Clone for FMOD_CODEC_STATE
impl Clone for FMOD_CODEC_STATE
Source§fn clone(&self) -> FMOD_CODEC_STATE
fn clone(&self) -> FMOD_CODEC_STATE
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 FMOD_CODEC_STATE
impl Debug for FMOD_CODEC_STATE
Source§impl Default for FMOD_CODEC_STATE
impl Default for FMOD_CODEC_STATE
Source§impl Into<FMOD_CODEC_STATE> for CodecState
impl Into<FMOD_CODEC_STATE> for CodecState
Source§fn into(self) -> FMOD_CODEC_STATE
fn into(self) -> FMOD_CODEC_STATE
Converts this type into the (usually inferred) input type.
Source§impl TryFrom<FMOD_CODEC_STATE> for CodecState
impl TryFrom<FMOD_CODEC_STATE> for CodecState
impl Copy for FMOD_CODEC_STATE
Auto Trait Implementations§
impl Freeze for FMOD_CODEC_STATE
impl RefUnwindSafe for FMOD_CODEC_STATE
impl !Send for FMOD_CODEC_STATE
impl !Sync for FMOD_CODEC_STATE
impl Unpin for FMOD_CODEC_STATE
impl UnwindSafe for FMOD_CODEC_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