pub enum AudioProcessingType {
Hardware,
Software,
None,
}Expand description
The type of audio processing being used.
Variants§
Hardware
Hardware audio processing (iOS VPIO, Android hardware effects).
Software
Software audio processing (WebRTC’s built-in APM).
None
Audio processing is not available or disabled.
Trait Implementations§
Source§impl Clone for AudioProcessingType
impl Clone for AudioProcessingType
Source§fn clone(&self) -> AudioProcessingType
fn clone(&self) -> AudioProcessingType
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 moreSource§impl Debug for AudioProcessingType
impl Debug for AudioProcessingType
Source§impl Default for AudioProcessingType
impl Default for AudioProcessingType
Source§impl PartialEq for AudioProcessingType
impl PartialEq for AudioProcessingType
Source§fn eq(&self, other: &AudioProcessingType) -> bool
fn eq(&self, other: &AudioProcessingType) -> bool
Tests for
self and other values to be equal, and is used by ==.impl Copy for AudioProcessingType
impl Eq for AudioProcessingType
impl StructuralPartialEq for AudioProcessingType
Auto Trait Implementations§
impl Freeze for AudioProcessingType
impl RefUnwindSafe for AudioProcessingType
impl Send for AudioProcessingType
impl Sync for AudioProcessingType
impl Unpin for AudioProcessingType
impl UnsafeUnpin for AudioProcessingType
impl UnwindSafe for AudioProcessingType
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§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.