pub struct AprsPacket {
pub data: AprsData,
}Expand description
A parsed APRS packet. Currently just a thin wrapper over AprsData;
future extensions may add envelope-level fields (source callsign,
digipeater path) if the APRS layer ever owns the AX.25 context.
Fields§
§data: AprsDataDecoded APRS data payload.
Trait Implementations§
Source§impl Clone for AprsPacket
impl Clone for AprsPacket
Source§fn clone(&self) -> AprsPacket
fn clone(&self) -> AprsPacket
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 AprsPacket
impl Debug for AprsPacket
Source§impl PartialEq for AprsPacket
impl PartialEq for AprsPacket
impl StructuralPartialEq for AprsPacket
Auto Trait Implementations§
impl Freeze for AprsPacket
impl RefUnwindSafe for AprsPacket
impl Send for AprsPacket
impl Sync for AprsPacket
impl Unpin for AprsPacket
impl UnwindSafe for AprsPacket
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