#[repr(C)]pub enum AudioVoiceParam {
Show 14 variants
Volume = 0,
Pitch = 1,
Detune = 2,
Pan = 3,
SampleData = 4,
Samplerate = 5,
LoopEnabled = 6,
LoopStart = 7,
LoopEnd = 8,
Reverb = 9,
FadeInDuration = 10,
FadeOutDuration = 11,
Start = 12,
Stop = 13,
}
Variants§
Volume = 0
Pitch = 1
Detune = 2
Pan = 3
SampleData = 4
Samplerate = 5
LoopEnabled = 6
LoopStart = 7
LoopEnd = 8
Reverb = 9
FadeInDuration = 10
FadeOutDuration = 11
Start = 12
Stop = 13
Trait Implementations§
Source§impl Clone for AudioVoiceParam
impl Clone for AudioVoiceParam
Source§fn clone(&self) -> AudioVoiceParam
fn clone(&self) -> AudioVoiceParam
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 moreimpl Copy for AudioVoiceParam
Auto Trait Implementations§
impl Freeze for AudioVoiceParam
impl RefUnwindSafe for AudioVoiceParam
impl Send for AudioVoiceParam
impl Sync for AudioVoiceParam
impl Unpin for AudioVoiceParam
impl UnwindSafe for AudioVoiceParam
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