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