#[repr(u8)]pub enum NoiseCancel {
Disabled = 0,
ShortDelay = 1,
MidDelay = 2,
LongestDelay = 3,
}Variants§
Disabled = 0
Noise cancelling disabled.
ShortDelay = 1
Shortest delay.
MidDelay = 2
Mid delay.
LongestDelay = 3
Longest delay.
Implementations§
Source§impl NoiseCancel
impl NoiseCancel
Trait Implementations§
Source§impl Clone for NoiseCancel
impl Clone for NoiseCancel
Source§fn clone(&self) -> NoiseCancel
fn clone(&self) -> NoiseCancel
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 NoiseCancel
impl Debug for NoiseCancel
Source§impl From<NoiseCancel> for u8
impl From<NoiseCancel> for u8
Source§fn from(val: NoiseCancel) -> u8
fn from(val: NoiseCancel) -> u8
Converts to this type from the input type.
Source§impl From<u8> for NoiseCancel
impl From<u8> for NoiseCancel
Source§fn from(val: u8) -> NoiseCancel
fn from(val: u8) -> NoiseCancel
Converts to this type from the input type.
Source§impl Ord for NoiseCancel
impl Ord for NoiseCancel
Source§fn cmp(&self, other: &NoiseCancel) -> Ordering
fn cmp(&self, other: &NoiseCancel) -> Ordering
1.21.0 · Source§fn max(self, other: Self) -> Selfwhere
Self: Sized,
fn max(self, other: Self) -> Selfwhere
Self: Sized,
Compares and returns the maximum of two values. Read more
Source§impl PartialEq for NoiseCancel
impl PartialEq for NoiseCancel
Source§impl PartialOrd for NoiseCancel
impl PartialOrd for NoiseCancel
impl Copy for NoiseCancel
impl Eq for NoiseCancel
impl StructuralPartialEq for NoiseCancel
Auto Trait Implementations§
impl Freeze for NoiseCancel
impl RefUnwindSafe for NoiseCancel
impl Send for NoiseCancel
impl Sync for NoiseCancel
impl Unpin for NoiseCancel
impl UnwindSafe for NoiseCancel
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