pub enum InterruptTime {
Sec3,
Sec5,
Sec10,
Sec30,
Continuous,
}Expand description
Interrupt time for APRS data display (how long the display shows incoming APRS data before returning to normal).
Variants§
Sec3
3 second interrupt.
Sec5
5 second interrupt.
Sec10
10 second interrupt.
Sec30
30 second interrupt.
Continuous
Continuous (hold until dismissed).
Trait Implementations§
Source§impl Clone for InterruptTime
impl Clone for InterruptTime
Source§fn clone(&self) -> InterruptTime
fn clone(&self) -> InterruptTime
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 InterruptTime
impl Debug for InterruptTime
Source§impl Hash for InterruptTime
impl Hash for InterruptTime
Source§impl PartialEq for InterruptTime
impl PartialEq for InterruptTime
impl Copy for InterruptTime
impl Eq for InterruptTime
impl StructuralPartialEq for InterruptTime
Auto Trait Implementations§
impl Freeze for InterruptTime
impl RefUnwindSafe for InterruptTime
impl Send for InterruptTime
impl Sync for InterruptTime
impl Unpin for InterruptTime
impl UnwindSafe for InterruptTime
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