pub enum DigitalSquelchType {
Off,
CodeSquelch,
CallsignSquelch,
}Expand description
Digital squelch type.
Variants§
Off
Digital squelch disabled – receive all DV signals.
CodeSquelch
Code squelch – open audio only when the digital code matches.
CallsignSquelch
Callsign squelch – open audio only when the source callsign matches.
Trait Implementations§
Source§impl Clone for DigitalSquelchType
impl Clone for DigitalSquelchType
Source§fn clone(&self) -> DigitalSquelchType
fn clone(&self) -> DigitalSquelchType
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 DigitalSquelchType
impl Debug for DigitalSquelchType
Source§impl Hash for DigitalSquelchType
impl Hash for DigitalSquelchType
Source§impl PartialEq for DigitalSquelchType
impl PartialEq for DigitalSquelchType
Source§impl TryFrom<u8> for DigitalSquelchType
impl TryFrom<u8> for DigitalSquelchType
impl Copy for DigitalSquelchType
impl Eq for DigitalSquelchType
impl StructuralPartialEq for DigitalSquelchType
Auto Trait Implementations§
impl Freeze for DigitalSquelchType
impl RefUnwindSafe for DigitalSquelchType
impl Send for DigitalSquelchType
impl Sync for DigitalSquelchType
impl Unpin for DigitalSquelchType
impl UnwindSafe for DigitalSquelchType
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