pub enum AudioMixing {
DefaultMixing,
DualChannelAgent,
DualChannelAlternate,
}Variants§
DefaultMixing
All users are mixed together.
DualChannelAgent
Agent audio in the left channel, all other audio in the right channel.
DualChannelAlternate
Each new audio track alternates between left and right channels.
Trait Implementations§
Source§impl Clone for AudioMixing
impl Clone for AudioMixing
Source§fn clone(&self) -> AudioMixing
fn clone(&self) -> AudioMixing
Returns a duplicate 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 AudioMixing
impl Debug for AudioMixing
Source§impl Default for AudioMixing
impl Default for AudioMixing
Source§fn default() -> AudioMixing
fn default() -> AudioMixing
Returns the “default value” for a type. Read more
Source§impl From<AudioMixing> for AudioMixing
impl From<AudioMixing> for AudioMixing
Source§fn from(value: AudioMixing) -> Self
fn from(value: AudioMixing) -> Self
Converts to this type from the input type.
impl Copy for AudioMixing
Auto Trait Implementations§
impl Freeze for AudioMixing
impl RefUnwindSafe for AudioMixing
impl Send for AudioMixing
impl Sync for AudioMixing
impl Unpin for AudioMixing
impl UnsafeUnpin for AudioMixing
impl UnwindSafe for AudioMixing
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