pub struct ActionRequestPdu {
pub pdu_header: PduHeader,
pub originating_entity_id: EntityId,
pub receiving_entity_id: EntityId,
pub request_id: u32,
pub action_id: 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.7
Fields§
§pdu_header: PduHeader§originating_entity_id: EntityId§receiving_entity_id: EntityId§request_id: u32§action_id: 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 ActionRequestPdu
impl Clone for ActionRequestPdu
Source§fn clone(&self) -> ActionRequestPdu
fn clone(&self) -> ActionRequestPdu
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 ActionRequestPdu
impl Debug for ActionRequestPdu
Source§impl Default for ActionRequestPdu
impl Default for ActionRequestPdu
Source§impl Pdu for ActionRequestPdu
impl Pdu for ActionRequestPdu
impl Copy for ActionRequestPdu
Auto Trait Implementations§
impl Freeze for ActionRequestPdu
impl RefUnwindSafe for ActionRequestPdu
impl Send for ActionRequestPdu
impl Sync for ActionRequestPdu
impl Unpin for ActionRequestPdu
impl UnwindSafe for ActionRequestPdu
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