#[repr(i32)]pub enum WbSubmodeId {
NoQuantize = 1,
QuantizedLow = 2,
QuantizedMedium = 3,
QuantizedHigh = 4,
}Expand description
Possible submodes for the Wideband mode.
Variants§
NoQuantize = 1
disables innovation quantization entirely
QuantizedLow = 2
enables innovation quantization, but with a lower rate than the default
QuantizedMedium = 3
enables innovation quantization with the default rate
QuantizedHigh = 4
enables innovation quantization, but with a higher rate than the default
Trait Implementations§
Source§impl Clone for WbSubmodeId
impl Clone for WbSubmodeId
Source§fn clone(&self) -> WbSubmodeId
fn clone(&self) -> WbSubmodeId
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 WbSubmodeId
impl Debug for WbSubmodeId
Source§impl From<i32> for WbSubmodeId
impl From<i32> for WbSubmodeId
Source§impl PartialEq for WbSubmodeId
impl PartialEq for WbSubmodeId
impl Copy for WbSubmodeId
impl Eq for WbSubmodeId
impl StructuralPartialEq for WbSubmodeId
Auto Trait Implementations§
impl Freeze for WbSubmodeId
impl RefUnwindSafe for WbSubmodeId
impl Send for WbSubmodeId
impl Sync for WbSubmodeId
impl Unpin for WbSubmodeId
impl UnwindSafe for WbSubmodeId
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