pub struct AcknowledgeReliablePdu {
pub originating_entity_id: EntityId,
pub receiving_entity_id: EntityId,
pub acknowledge_flag: AcknowledgeFlag,
pub response_flag: AcknowledgeResponseFlag,
pub request_id: u32,
/* private fields */
}Expand description
Implemented according to IEEE 1278.1-2012 §7.11.6
Fields§
§originating_entity_id: EntityId§receiving_entity_id: EntityId§acknowledge_flag: AcknowledgeFlag§response_flag: AcknowledgeResponseFlag§request_id: u32Implementations§
Trait Implementations§
Source§impl Debug for AcknowledgeReliablePdu
impl Debug for AcknowledgeReliablePdu
Source§impl Default for AcknowledgeReliablePdu
impl Default for AcknowledgeReliablePdu
Source§impl Pdu for AcknowledgeReliablePdu
impl Pdu for AcknowledgeReliablePdu
type Header = PduHeader
fn header(&self) -> &Self::Header
fn header_mut(&mut self) -> &mut Self::Header
Source§fn deserialize<B: Buf>(buf: &mut B) -> Result<Self, DISError>where
Self: Sized,
fn deserialize<B: Buf>(buf: &mut B) -> Result<Self, DISError>where
Self: Sized,
Errors Read more
Source§fn deserialize_without_header<B: Buf>(
buf: &mut B,
header: Self::Header,
) -> Result<Self, DISError>where
Self: Sized,
fn deserialize_without_header<B: Buf>(
buf: &mut B,
header: Self::Header,
) -> Result<Self, DISError>where
Self: Sized,
Errors Read more
fn as_any(&self) -> &dyn Any
fn finalize(&mut self)
Auto Trait Implementations§
impl Freeze for AcknowledgeReliablePdu
impl RefUnwindSafe for AcknowledgeReliablePdu
impl Send for AcknowledgeReliablePdu
impl Sync for AcknowledgeReliablePdu
impl Unpin for AcknowledgeReliablePdu
impl UnwindSafe for AcknowledgeReliablePdu
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