pub enum AudioTarget {
Master,
Music,
Sfx,
Voice,
}Expand description
The output stage an AudioCommand addresses: the master mix or one of
the three buses under it.
Variants§
Master
The master mix every bus feeds.
Music
The music bus.
Sfx
The sound-effects bus.
Voice
The voice bus.
Trait Implementations§
Source§impl Clone for AudioTarget
impl Clone for AudioTarget
Source§fn clone(&self) -> AudioTarget
fn clone(&self) -> AudioTarget
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreimpl Copy for AudioTarget
Source§impl Debug for AudioTarget
impl Debug for AudioTarget
impl Eq for AudioTarget
Source§impl PartialEq for AudioTarget
impl PartialEq for AudioTarget
impl StructuralPartialEq for AudioTarget
Auto Trait Implementations§
impl Freeze for AudioTarget
impl RefUnwindSafe for AudioTarget
impl Send for AudioTarget
impl Sync for AudioTarget
impl Unpin for AudioTarget
impl UnsafeUnpin for AudioTarget
impl UnwindSafe for AudioTarget
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
Source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
Source§impl<Q, K> Equivalent<K> for Q
impl<Q, K> Equivalent<K> for Q
Source§fn equivalent(&self, key: &K) -> bool
fn equivalent(&self, key: &K) -> bool
Compare self to
key and return true if they are equal.