pub enum Bandwidth {
Auto = -1_000,
Narrowband = 1_101,
Mediumband = 1_102,
Wideband = 1_103,
Superwideband = 1_104,
Fullband = 1_105,
}
Expand description
The available bandwidth level settings.
Variants§
Auto = -1_000
Auto/default setting.
Narrowband = 1_101
4kHz bandpass.
Mediumband = 1_102
6kHz bandpass.
Wideband = 1_103
8kHz bandpass.
Superwideband = 1_104
12kHz bandpass.
Fullband = 1_105
20kHz bandpass.
Trait Implementations§
impl Copy for Bandwidth
impl Eq for Bandwidth
impl StructuralPartialEq for Bandwidth
Auto Trait Implementations§
impl Freeze for Bandwidth
impl RefUnwindSafe for Bandwidth
impl Send for Bandwidth
impl Sync for Bandwidth
impl Unpin for Bandwidth
impl UnwindSafe for Bandwidth
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