pub enum AyMode {
Mono,
ABC,
ACB,
BAC,
BCA,
CAB,
CBA,
}
Expand description
Stereo configuration
Both
- Played on both channels
Left
- Played only on left channel
Right
- Played only on right channel
Mode | A | B | C |
---|---|---|---|
Mono | Both | Both | Both |
ABC | Left | Both | Right |
ACB | Left | Right | Both |
BAC | Both | Left | Right |
BCA | Right | Left | Both |
CAB | Both | Right | Left |
CBA | Right | Both | Left |
Variants§
Trait Implementations§
Auto Trait Implementations§
impl Freeze for AyMode
impl RefUnwindSafe for AyMode
impl Send for AyMode
impl Sync for AyMode
impl Unpin for AyMode
impl UnwindSafe for AyMode
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