pub struct ElectromagneticEmissionsPdu {
pub emitting_entity_id: EntityId,
pub event_id: EventId,
pub state_update_indicator: EEAttributeStateIndicator,
pub number_of_systems: u8,
pub systems: Vec<ElectromagneticEmissionSystemData>,
/* private fields */
}Expand description
Implemented according to IEEE 1278.1-2012 §7.6.2
Fields§
§emitting_entity_id: EntityId§event_id: EventId§state_update_indicator: EEAttributeStateIndicator§number_of_systems: u8§systems: Vec<ElectromagneticEmissionSystemData>Implementations§
Trait Implementations§
Source§impl Debug for ElectromagneticEmissionsPdu
impl Debug for ElectromagneticEmissionsPdu
Source§impl Pdu for ElectromagneticEmissionsPdu
impl Pdu for ElectromagneticEmissionsPdu
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 ElectromagneticEmissionsPdu
impl RefUnwindSafe for ElectromagneticEmissionsPdu
impl Send for ElectromagneticEmissionsPdu
impl Sync for ElectromagneticEmissionsPdu
impl Unpin for ElectromagneticEmissionsPdu
impl UnwindSafe for ElectromagneticEmissionsPdu
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