pub struct DataPdu {
pub pdu_header: PduHeader,
pub originating_entity_id: EntityId,
pub receiving_entity_id: EntityId,
pub request_id: u32,
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.11
Fields§
§pdu_header: PduHeader
§originating_entity_id: EntityId
§receiving_entity_id: EntityId
§request_id: u32
§padding: u32
§number_of_fixed_datum_records: u32
§number_of_variable_datum_records: u32
§fixed_datum_records: u64
§variable_datum_records: u64
Trait Implementations§
Source§impl Pdu for DataPdu
impl Pdu for DataPdu
impl Copy for DataPdu
Auto Trait Implementations§
impl Freeze for DataPdu
impl RefUnwindSafe for DataPdu
impl Send for DataPdu
impl Sync for DataPdu
impl Unpin for DataPdu
impl UnwindSafe for DataPdu
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