pub struct CreateSoundexInfo {
Show 34 fields pub length: u32, pub fileoffset: u32, pub numchannels: i32, pub defaultfrequency: i32, pub format: SoundFormat, pub decodebuffersize: u32, pub initialsubsound: i32, pub numsubsounds: i32, pub inclusionlist: Option<Vec<i32>>, pub pcmreadcallback: FMOD_SOUND_PCMREAD_CALLBACK, pub pcmsetposcallback: FMOD_SOUND_PCMSETPOS_CALLBACK, pub nonblockcallback: FMOD_SOUND_NONBLOCK_CALLBACK, pub dlsname: Option<String>, pub encryptionkey: Option<String>, pub maxpolyphony: i32, pub userdata: *mut c_void, pub suggestedsoundtype: SoundType, pub fileuseropen: FMOD_FILE_OPEN_CALLBACK, pub fileuserclose: FMOD_FILE_CLOSE_CALLBACK, pub fileuserread: FMOD_FILE_READ_CALLBACK, pub fileuserseek: FMOD_FILE_SEEK_CALLBACK, pub fileuserasyncread: FMOD_FILE_ASYNCREAD_CALLBACK, pub fileuserasynccancel: FMOD_FILE_ASYNCCANCEL_CALLBACK, pub fileuserdata: *mut c_void, pub filebuffersize: i32, pub channelorder: ChannelOrder, pub initialsoundgroup: Option<SoundGroup>, pub initialseekposition: u32, pub initialseekpostype: FMOD_TIMEUNIT, pub ignoresetfilesystem: i32, pub audioqueuepolicy: u32, pub minmidigranularity: u32, pub nonblockthreadid: i32, pub fsbguid: Option<Guid>,
}

Fields§

§length: u32§fileoffset: u32§numchannels: i32§defaultfrequency: i32§format: SoundFormat§decodebuffersize: u32§initialsubsound: i32§numsubsounds: i32§inclusionlist: Option<Vec<i32>>§pcmreadcallback: FMOD_SOUND_PCMREAD_CALLBACK§pcmsetposcallback: FMOD_SOUND_PCMSETPOS_CALLBACK§nonblockcallback: FMOD_SOUND_NONBLOCK_CALLBACK§dlsname: Option<String>§encryptionkey: Option<String>§maxpolyphony: i32§userdata: *mut c_void§suggestedsoundtype: SoundType§fileuseropen: FMOD_FILE_OPEN_CALLBACK§fileuserclose: FMOD_FILE_CLOSE_CALLBACK§fileuserread: FMOD_FILE_READ_CALLBACK§fileuserseek: FMOD_FILE_SEEK_CALLBACK§fileuserasyncread: FMOD_FILE_ASYNCREAD_CALLBACK§fileuserasynccancel: FMOD_FILE_ASYNCCANCEL_CALLBACK§fileuserdata: *mut c_void§filebuffersize: i32§channelorder: ChannelOrder§initialsoundgroup: Option<SoundGroup>§initialseekposition: u32§initialseekpostype: FMOD_TIMEUNIT§ignoresetfilesystem: i32§audioqueuepolicy: u32§minmidigranularity: u32§nonblockthreadid: i32§fsbguid: Option<Guid>

Trait Implementations§

source§

impl Clone for CreateSoundexInfo

source§

fn clone(&self) -> CreateSoundexInfo

Returns a copy of the value. Read more
1.0.0 · source§

fn clone_from(&mut self, source: &Self)

Performs copy-assignment from source. Read more
source§

impl Debug for CreateSoundexInfo

source§

fn fmt(&self, f: &mut Formatter<'_>) -> Result

Formats the value using the given formatter. Read more
source§

impl Default for CreateSoundexInfo

source§

fn default() -> Self

Returns the “default value” for a type. Read more
source§

impl Into<FMOD_CREATESOUNDEXINFO> for CreateSoundexInfo

source§

fn into(self) -> FMOD_CREATESOUNDEXINFO

Converts this type into the (usually inferred) input type.
source§

impl TryFrom<FMOD_CREATESOUNDEXINFO> for CreateSoundexInfo

§

type Error = Error

The type returned in the event of a conversion error.
source§

fn try_from(value: FMOD_CREATESOUNDEXINFO) -> Result<Self, Self::Error>

Performs the conversion.

Auto Trait Implementations§

Blanket Implementations§

source§

impl<T> Any for T
where T: 'static + ?Sized,

source§

fn type_id(&self) -> TypeId

Gets the TypeId of self. Read more
source§

impl<T> Borrow<T> for T
where T: ?Sized,

source§

fn borrow(&self) -> &T

Immutably borrows from an owned value. Read more
source§

impl<T> BorrowMut<T> for T
where T: ?Sized,

source§

fn borrow_mut(&mut self) -> &mut T

Mutably borrows from an owned value. Read more
source§

impl<T> From<T> for T

source§

fn from(t: T) -> T

Returns the argument unchanged.

source§

impl<T, U> Into<U> for T
where U: From<T>,

source§

fn into(self) -> U

Calls U::from(self).

That is, this conversion is whatever the implementation of From<T> for U chooses to do.

source§

impl<T> ToOwned for T
where T: Clone,

§

type Owned = T

The resulting type after obtaining ownership.
source§

fn to_owned(&self) -> T

Creates owned data from borrowed data, usually by cloning. Read more
source§

fn clone_into(&self, target: &mut T)

Uses borrowed data to replace owned data, usually by cloning. Read more
source§

impl<T, U> TryFrom<U> for T
where U: Into<T>,

§

type Error = Infallible

The type returned in the event of a conversion error.
source§

fn try_from(value: U) -> Result<T, <T as TryFrom<U>>::Error>

Performs the conversion.
source§

impl<T, U> TryInto<U> for T
where U: TryFrom<T>,

§

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.
source§

fn try_into(self) -> Result<U, <U as TryFrom<T>>::Error>

Performs the conversion.