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