pub struct AprsThirdParty {
pub inner: Box<AprsPacket>,
}Expand description
A third-party APRS packet: a complete APRS packet forwarded from one network to another (e.g. RF→APRS-IS gateway).
DTI: }
The payload after } is a full textual APRS packet that is recursively
decoded. Decode failures return an error rather than silently ignoring them.
Fields§
§inner: Box<AprsPacket>The forwarded inner packet, recursively decoded.
Implementations§
Trait Implementations§
Source§impl Clone for AprsThirdParty
impl Clone for AprsThirdParty
Source§fn clone(&self) -> AprsThirdParty
fn clone(&self) -> AprsThirdParty
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 AprsThirdParty
impl Debug for AprsThirdParty
Source§impl PartialEq for AprsThirdParty
impl PartialEq for AprsThirdParty
Source§fn eq(&self, other: &AprsThirdParty) -> bool
fn eq(&self, other: &AprsThirdParty) -> bool
Tests for
self and other values to be equal, and is used by ==.impl StructuralPartialEq for AprsThirdParty
Auto Trait Implementations§
impl Freeze for AprsThirdParty
impl RefUnwindSafe for AprsThirdParty
impl Send for AprsThirdParty
impl Sync for AprsThirdParty
impl Unpin for AprsThirdParty
impl UnsafeUnpin for AprsThirdParty
impl UnwindSafe for AprsThirdParty
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