#[repr(C)]pub enum MonoSoundDestination {
All = 0,
FrontCenter = 1,
FrontLeftAndRight = 2,
}
Variants§
All = 0
Send mono sound to all available speakers
FrontCenter = 1
Send mono sound to front center speaker if available
FrontLeftAndRight = 2
Send mono sound to front left/right speakers if available
Trait Implementations§
Source§impl Clone for MonoSoundDestination
impl Clone for MonoSoundDestination
Source§fn clone(&self) -> MonoSoundDestination
fn clone(&self) -> MonoSoundDestination
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 moreSource§impl Debug for MonoSoundDestination
impl Debug for MonoSoundDestination
Source§impl PartialEq for MonoSoundDestination
impl PartialEq for MonoSoundDestination
impl Copy for MonoSoundDestination
impl Eq for MonoSoundDestination
impl StructuralPartialEq for MonoSoundDestination
Auto Trait Implementations§
impl Freeze for MonoSoundDestination
impl RefUnwindSafe for MonoSoundDestination
impl Send for MonoSoundDestination
impl Sync for MonoSoundDestination
impl Unpin for MonoSoundDestination
impl UnwindSafe for MonoSoundDestination
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