pub struct AprsQuery {
pub query_type: Vec<u8>,
pub footprint: Option<QueryFootprint>,
pub trailing: Vec<u8>,
}Expand description
An APRS General Query packet.
DTI: ?
Format: ?TYPE? or ?TYPE?lat,lon,radius (with optional geographic footprint).
Common query types: APRS, IGATE, WX, VERSION, STATUS.
Fields§
§query_type: Vec<u8>The query type (between the two ? characters).
footprint: Option<QueryFootprint>Optional geographic footprint: (latitude°, longitude°, radius km).
trailing: Vec<u8>Any trailing bytes after the footprint (preserved verbatim).
Implementations§
Trait Implementations§
impl StructuralPartialEq for AprsQuery
Auto Trait Implementations§
impl Freeze for AprsQuery
impl RefUnwindSafe for AprsQuery
impl Send for AprsQuery
impl Sync for AprsQuery
impl Unpin for AprsQuery
impl UnsafeUnpin for AprsQuery
impl UnwindSafe for AprsQuery
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