pub struct SetDataPdu {
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.10
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 Clone for SetDataPdu
impl Clone for SetDataPdu
Source§fn clone(&self) -> SetDataPdu
fn clone(&self) -> SetDataPdu
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 SetDataPdu
impl Debug for SetDataPdu
Source§impl Default for SetDataPdu
impl Default for SetDataPdu
Source§impl Pdu for SetDataPdu
impl Pdu for SetDataPdu
impl Copy for SetDataPdu
Auto Trait Implementations§
impl Freeze for SetDataPdu
impl RefUnwindSafe for SetDataPdu
impl Send for SetDataPdu
impl Sync for SetDataPdu
impl Unpin for SetDataPdu
impl UnwindSafe for SetDataPdu
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