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