pub struct AprsPositionlessWeather {
pub timestamp: Vec<u8>,
pub weather: AprsWeatherData,
pub comment: Vec<u8>,
}Expand description
A positionless weather report. DTI: _.
Format: _MMDDHHMM (local-time timestamp) + weather fields.
The timestamp is stored as raw bytes since the MMDDHHMM format is distinct
from the DDHHMM/HHMMSS formats used in other APRS packets.
Fields§
§timestamp: Vec<u8>8-byte MMDDHHMM timestamp in local time.
weather: AprsWeatherData§comment: Vec<u8>Implementations§
Trait Implementations§
Source§impl Clone for AprsPositionlessWeather
impl Clone for AprsPositionlessWeather
Source§fn clone(&self) -> AprsPositionlessWeather
fn clone(&self) -> AprsPositionlessWeather
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 AprsPositionlessWeather
impl Debug for AprsPositionlessWeather
Source§impl PartialEq for AprsPositionlessWeather
impl PartialEq for AprsPositionlessWeather
Source§fn eq(&self, other: &AprsPositionlessWeather) -> bool
fn eq(&self, other: &AprsPositionlessWeather) -> bool
Tests for
self and other values to be equal, and is used by ==.impl StructuralPartialEq for AprsPositionlessWeather
Auto Trait Implementations§
impl Freeze for AprsPositionlessWeather
impl RefUnwindSafe for AprsPositionlessWeather
impl Send for AprsPositionlessWeather
impl Sync for AprsPositionlessWeather
impl Unpin for AprsPositionlessWeather
impl UnsafeUnpin for AprsPositionlessWeather
impl UnwindSafe for AprsPositionlessWeather
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