pub struct AidToNavigation {Show 13 fields
pub mmsi: TargetId,
pub aid_type: Option<AidType>,
pub name: Option<InlineStr<ALL_NAME_CHARS>>,
pub accurate: bool,
pub position: Option<Position>,
pub dimensions: Option<Dimensions>,
pub fixing_device: Option<PositionFixingDevice>,
pub second: Option<u8>,
pub off_position: Option<bool>,
pub regional: u8,
pub raim: bool,
pub is_virtual: bool,
pub assigned: bool,
}Expand description
Aid-to-navigation report.
Fields§
§mmsi: TargetIdMMSI.
aid_type: Option<AidType>Aid type.
name: Option<InlineStr<ALL_NAME_CHARS>>Name, up to 34 characters: 20 in the name field plus the extension.
accurate: boolPosition accuracy flag: DGNSS, better than 10 m.
position: Option<Position>Position, 1/10 000 minute resolution.
dimensions: Option<Dimensions>Dimensions around the position; none for a virtual aid.
fixing_device: Option<PositionFixingDevice>Position fixing device; Surveyed for a fixed aid.
second: Option<u8>UTC second of the report, 0..=59; None if no time is available or
the position is dead-reckoned or manual.
off_position: Option<bool>Off-position flag for a floating aid. Defined only when the second is
valid; otherwise None.
regional: u88 bits reserved for regional use.
raim: boolRAIM flag.
is_virtual: boolVirtual aid: broadcast from elsewhere, nothing physical at the position.
assigned: boolAssigned mode: transmitting on a schedule set by a competent authority.
Trait Implementations§
Auto Trait Implementations§
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