pub struct DF19Message {
pub application: u8,
pub icao: u32,
pub tc: Option<u8>,
pub msg: Option<AdsbMessage>,
}Fields§
§application: u8§icao: u32§tc: Option<u8>§msg: Option<AdsbMessage>Implementations§
Source§impl DF19Message
impl DF19Message
pub fn decode(data: Vec<u8>) -> DF19Message
Trait Implementations§
Source§impl Clone for DF19Message
impl Clone for DF19Message
Source§fn clone(&self) -> DF19Message
fn clone(&self) -> DF19Message
Returns a duplicate of the value. Read more
1.0.0 · 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 DF19Message
impl Debug for DF19Message
Source§impl PartialEq for DF19Message
impl PartialEq for DF19Message
impl Eq for DF19Message
impl StructuralPartialEq for DF19Message
Auto Trait Implementations§
impl Freeze for DF19Message
impl RefUnwindSafe for DF19Message
impl Send for DF19Message
impl Sync for DF19Message
impl Unpin for DF19Message
impl UnsafeUnpin for DF19Message
impl UnwindSafe for DF19Message
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