pub struct AcknowledgePdu {
pub pdu_header: PduHeader,
pub originating_entity_id: EntityId,
pub receiving_entity_id: EntityId,
pub acknowledge_flag: AcknowledgeFlag,
pub response_flag: AcknowledgeResponseFlag,
pub request_id: u32,
}Expand description
Implemented according to IEEE 1278.1-2012 §7.5.6
Fields§
§pdu_header: PduHeader§originating_entity_id: EntityId§receiving_entity_id: EntityId§acknowledge_flag: AcknowledgeFlag§response_flag: AcknowledgeResponseFlag§request_id: u32Trait Implementations§
Source§impl Clone for AcknowledgePdu
impl Clone for AcknowledgePdu
Source§fn clone(&self) -> AcknowledgePdu
fn clone(&self) -> AcknowledgePdu
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 AcknowledgePdu
impl Debug for AcknowledgePdu
Source§impl Default for AcknowledgePdu
impl Default for AcknowledgePdu
Source§impl Pdu for AcknowledgePdu
impl Pdu for AcknowledgePdu
impl Copy for AcknowledgePdu
Auto Trait Implementations§
impl Freeze for AcknowledgePdu
impl RefUnwindSafe for AcknowledgePdu
impl Send for AcknowledgePdu
impl Sync for AcknowledgePdu
impl Unpin for AcknowledgePdu
impl UnwindSafe for AcknowledgePdu
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