pub struct EventReportPdu {
pub pdu_header: PduHeader,
pub originating_entity_id: EntityId,
pub receiving_entity_id: EntityId,
pub event_type: EventType,
pub padding: u32,
pub number_of_fixed_datum_records: u32,
pub number_of_variable_datum_records: u32,
pub fixed_datum_records: u64,
pub variable_datum_records: u64,
}Expand description
Implemented according to IEEE 1278.1-2012 §7.5.12
Fields§
§pdu_header: PduHeader§originating_entity_id: EntityId§receiving_entity_id: EntityId§event_type: EventType§padding: u32§number_of_fixed_datum_records: u32§number_of_variable_datum_records: u32§fixed_datum_records: u64§variable_datum_records: u64Trait Implementations§
Source§impl Clone for EventReportPdu
impl Clone for EventReportPdu
Source§fn clone(&self) -> EventReportPdu
fn clone(&self) -> EventReportPdu
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 EventReportPdu
impl Debug for EventReportPdu
Source§impl Default for EventReportPdu
impl Default for EventReportPdu
Source§impl Pdu for EventReportPdu
impl Pdu for EventReportPdu
impl Copy for EventReportPdu
Auto Trait Implementations§
impl Freeze for EventReportPdu
impl RefUnwindSafe for EventReportPdu
impl Send for EventReportPdu
impl Sync for EventReportPdu
impl Unpin for EventReportPdu
impl UnwindSafe for EventReportPdu
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