pub struct ID {
pub reserved: Option<u16>,
pub address_type: u16,
pub aircraft_type: u8,
pub is_stealth: bool,
pub is_notrack: bool,
pub address: u32,
}
Fields§
§reserved: Option<u16>
§address_type: u16
§aircraft_type: u8
§is_stealth: bool
§is_notrack: bool
§address: u32
Trait Implementations§
impl Eq for ID
impl StructuralPartialEq for ID
Auto Trait Implementations§
impl Freeze for ID
impl RefUnwindSafe for ID
impl Send for ID
impl Sync for ID
impl Unpin for ID
impl UnwindSafe for ID
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