pub struct AprsStatus {
pub timestamp: Option<Timestamp>,
pub comment: Vec<u8>,
}Expand description
An APRS Status Report.
DTI: >
Announces the station’s current mission or status as a single free-text line. APRS101 restricts the timestamp to DDHHMM format, but HHMMSS is also seen in practice.
Fields§
§timestamp: Option<Timestamp>Optional timestamp. The spec allows only DDHHMM; HHMMSS is a common extension.
comment: Vec<u8>Implementations§
Trait Implementations§
Source§impl Clone for AprsStatus
impl Clone for AprsStatus
Source§fn clone(&self) -> AprsStatus
fn clone(&self) -> AprsStatus
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 AprsStatus
impl Debug for AprsStatus
Source§impl PartialEq for AprsStatus
impl PartialEq for AprsStatus
Source§fn eq(&self, other: &AprsStatus) -> bool
fn eq(&self, other: &AprsStatus) -> bool
Tests for
self and other values to be equal, and is used by ==.impl Eq for AprsStatus
impl StructuralPartialEq for AprsStatus
Auto Trait Implementations§
impl Freeze for AprsStatus
impl RefUnwindSafe for AprsStatus
impl Send for AprsStatus
impl Sync for AprsStatus
impl Unpin for AprsStatus
impl UnsafeUnpin for AprsStatus
impl UnwindSafe for AprsStatus
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