pub struct AprsItem {
pub name: String,
pub live: bool,
pub position: AprsPosition,
}Expand description
An APRS item report (data type ) ).
Items are similar to objects but simpler — no timestamp. They represent static entities like event locations or landmarks.
Fields§
§name: StringItem name (3-9 characters).
live: boolWhether the item is live (true) or killed (false).
position: AprsPositionPosition data.
Trait Implementations§
impl StructuralPartialEq for AprsItem
Auto Trait Implementations§
impl Freeze for AprsItem
impl RefUnwindSafe for AprsItem
impl Send for AprsItem
impl Sync for AprsItem
impl Unpin for AprsItem
impl UnwindSafe for AprsItem
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