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