pub struct IFFPdu {
pub emitting_entity_id: EntityId,
pub event_id: EventId,
pub relative_antenna_location: EntityCoordinateVector,
pub system_id: SystemId,
pub system_designator: u8,
pub system_specific_data: u8,
pub fundamental_operational_data: FundamentalOperationalData,
pub layer_header: LayerHeader,
pub beam_data: BeamData,
pub secondary_operational_data: SecondaryOperationalData,
pub iff_parameters: Vec<IFFFundamentalParameterData>,
/* private fields */
}Expand description
Implemented according to IEEE 1278.1-2012 §7.6.5
Fields§
§emitting_entity_id: EntityId§event_id: EventId§relative_antenna_location: EntityCoordinateVector§system_id: SystemId§system_designator: u8§system_specific_data: u8§fundamental_operational_data: FundamentalOperationalData§layer_header: LayerHeader§beam_data: BeamData§secondary_operational_data: SecondaryOperationalData§iff_parameters: Vec<IFFFundamentalParameterData>Implementations§
Trait Implementations§
Source§impl Pdu for IFFPdu
impl Pdu for IFFPdu
type Header = PduHeader
fn header(&self) -> &Self::Header
fn header_mut(&mut self) -> &mut Self::Header
Source§fn deserialize<B: Buf>(buf: &mut B) -> Result<Self, DISError>where
Self: Sized,
fn deserialize<B: Buf>(buf: &mut B) -> Result<Self, DISError>where
Self: Sized,
Errors Read more
Source§fn deserialize_without_header<B: Buf>(
buf: &mut B,
header: Self::Header,
) -> Result<Self, DISError>where
Self: Sized,
fn deserialize_without_header<B: Buf>(
buf: &mut B,
header: Self::Header,
) -> Result<Self, DISError>where
Self: Sized,
Errors Read more
fn as_any(&self) -> &dyn Any
fn finalize(&mut self)
Auto Trait Implementations§
impl Freeze for IFFPdu
impl RefUnwindSafe for IFFPdu
impl Send for IFFPdu
impl Sync for IFFPdu
impl Unpin for IFFPdu
impl UnwindSafe for IFFPdu
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