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