pub struct StopFreezeReliablePdu {
pub originating_entity_id: EntityId,
pub receiving_entity_id: EntityId,
pub real_world_time: ClockTime,
pub reason: Reason,
pub frozen_behavior: FrozenBehavior,
pub required_reliability_service: u8,
pub request_id: u32,
/* private fields */
}Expand description
Implemented according to IEEE 1278.1-2012 §7.11.5
Fields§
§originating_entity_id: EntityId§receiving_entity_id: EntityId§real_world_time: ClockTime§reason: Reason§frozen_behavior: FrozenBehavior§required_reliability_service: u8§request_id: u32Implementations§
Trait Implementations§
Source§impl Debug for StopFreezeReliablePdu
impl Debug for StopFreezeReliablePdu
Source§impl Default for StopFreezeReliablePdu
impl Default for StopFreezeReliablePdu
Source§impl Pdu for StopFreezeReliablePdu
impl Pdu for StopFreezeReliablePdu
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 StopFreezeReliablePdu
impl RefUnwindSafe for StopFreezeReliablePdu
impl Send for StopFreezeReliablePdu
impl Sync for StopFreezeReliablePdu
impl Unpin for StopFreezeReliablePdu
impl UnwindSafe for StopFreezeReliablePdu
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