pub enum EchoCancellation {
Off,
On,
Unknown(u32),
}Expand description
Station echo-cancellation policy for an audio channel.
Variants§
Implementations§
Trait Implementations§
Source§impl Clone for EchoCancellation
impl Clone for EchoCancellation
Source§fn clone(&self) -> EchoCancellation
fn clone(&self) -> EchoCancellation
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 EchoCancellation
Source§impl Debug for EchoCancellation
impl Debug for EchoCancellation
impl Eq for EchoCancellation
Source§impl From<EchoCancellation> for u32
impl From<EchoCancellation> for u32
Source§fn from(value: EchoCancellation) -> Self
fn from(value: EchoCancellation) -> Self
Converts to this type from the input type.
Source§impl From<u32> for EchoCancellation
impl From<u32> for EchoCancellation
Source§impl Hash for EchoCancellation
impl Hash for EchoCancellation
Source§impl PartialEq for EchoCancellation
impl PartialEq for EchoCancellation
impl StructuralPartialEq for EchoCancellation
Auto Trait Implementations§
impl Freeze for EchoCancellation
impl RefUnwindSafe for EchoCancellation
impl Send for EchoCancellation
impl Sync for EchoCancellation
impl Unpin for EchoCancellation
impl UnsafeUnpin for EchoCancellation
impl UnwindSafe for EchoCancellation
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