pub enum QConstruct {
Ac,
Ax,
Ao,
Ar,
As,
At,
Ai,
AoRf,
ArRf,
Az,
Unknown(String),
}Expand description
A Q-construct used on APRS-IS to describe how a packet entered the internet.
Defined in the APRS-IS Q-construct specification.
Variants§
Ac
qAC — server login verified
Ax
qAX — no verification (unverified login)
Ao
qAO — heard via RF, originated on internet
Ar
qAR — via bidirectional internet gateway
As
qAS — via server without verification
At
qAT — traced via internet
Ai
qAI — server-generated packet
AoRf
qAo — heard directly via RF (lowercase o)
ArRf
qAr — received from RF to internet
Az
qAZ — zero hop (RF or direct)
Unknown(String)
Unknown Q-construct token
Trait Implementations§
Source§impl Clone for QConstruct
impl Clone for QConstruct
Source§fn clone(&self) -> QConstruct
fn clone(&self) -> QConstruct
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · 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 QConstruct
impl Debug for QConstruct
Source§impl Display for QConstruct
impl Display for QConstruct
Source§impl Hash for QConstruct
impl Hash for QConstruct
Source§impl PartialEq for QConstruct
impl PartialEq for QConstruct
Source§fn eq(&self, other: &QConstruct) -> bool
fn eq(&self, other: &QConstruct) -> bool
Tests for
self and other values to be equal, and is used by ==.impl Eq for QConstruct
impl StructuralPartialEq for QConstruct
Auto Trait Implementations§
impl Freeze for QConstruct
impl RefUnwindSafe for QConstruct
impl Send for QConstruct
impl Sync for QConstruct
impl Unpin for QConstruct
impl UnsafeUnpin for QConstruct
impl UnwindSafe for QConstruct
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