pub struct CodecStateFunctions {
pub metadata: FMOD_CODEC_METADATA_FUNC,
pub alloc: FMOD_CODEC_ALLOC_FUNC,
pub free: FMOD_CODEC_FREE_FUNC,
pub log: FMOD_CODEC_LOG_FUNC,
pub read: FMOD_CODEC_FILE_READ_FUNC,
pub seek: FMOD_CODEC_FILE_SEEK_FUNC,
pub tell: FMOD_CODEC_FILE_TELL_FUNC,
pub size: FMOD_CODEC_FILE_SIZE_FUNC,
}
Fields§
§metadata: FMOD_CODEC_METADATA_FUNC
§alloc: FMOD_CODEC_ALLOC_FUNC
§free: FMOD_CODEC_FREE_FUNC
§log: FMOD_CODEC_LOG_FUNC
§read: FMOD_CODEC_FILE_READ_FUNC
§seek: FMOD_CODEC_FILE_SEEK_FUNC
§tell: FMOD_CODEC_FILE_TELL_FUNC
§size: FMOD_CODEC_FILE_SIZE_FUNC
Trait Implementations§
Source§impl Clone for CodecStateFunctions
impl Clone for CodecStateFunctions
Source§fn clone(&self) -> CodecStateFunctions
fn clone(&self) -> CodecStateFunctions
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 CodecStateFunctions
impl Debug for CodecStateFunctions
Source§impl Into<FMOD_CODEC_STATE_FUNCTIONS> for CodecStateFunctions
impl Into<FMOD_CODEC_STATE_FUNCTIONS> for CodecStateFunctions
Source§fn into(self) -> FMOD_CODEC_STATE_FUNCTIONS
fn into(self) -> FMOD_CODEC_STATE_FUNCTIONS
Converts this type into the (usually inferred) input type.
Auto Trait Implementations§
impl Freeze for CodecStateFunctions
impl RefUnwindSafe for CodecStateFunctions
impl Send for CodecStateFunctions
impl Sync for CodecStateFunctions
impl Unpin for CodecStateFunctions
impl UnwindSafe for CodecStateFunctions
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