dis-rs 0.13.0

An implementation of the Distributed Interactive Simulation protocol (IEEE-1278.1) in Rust. This main crate contains PDU implementations and facilities to read/write PDUs from Rust data structures to the wire format and vice versa. It supports versions 6 and 7 of the protocol.
Documentation
use crate::enumerations::{RequiredReliabilityService, StopFreezeFrozenBehavior, StopFreezeReason};
use crate::model::{ClockTime, EntityId};
use crate::stop_freeze_r::model::StopFreezeR;

pub struct StopFreezeRBuilder(StopFreezeR);

impl Default for StopFreezeRBuilder {
    fn default() -> Self {
        Self::new()
    }
}

impl StopFreezeRBuilder {
    #[must_use]
    pub fn new() -> Self {
        StopFreezeRBuilder(StopFreezeR::default())
    }

    #[must_use]
    pub fn new_from_body(body: StopFreezeR) -> Self {
        StopFreezeRBuilder(body)
    }

    #[must_use]
    pub fn build(self) -> StopFreezeR {
        self.0
    }

    #[must_use]
    pub fn with_origination_id(mut self, originating_id: EntityId) -> Self {
        self.0.originating_id = originating_id;
        self
    }

    #[must_use]
    pub fn with_receiving_id(mut self, receiving_id: EntityId) -> Self {
        self.0.receiving_id = receiving_id;
        self
    }

    #[must_use]
    pub fn with_real_world_time(mut self, real_world_time: ClockTime) -> Self {
        self.0.real_world_time = real_world_time;
        self
    }

    #[must_use]
    pub fn with_reason(mut self, reason: StopFreezeReason) -> Self {
        self.0.reason = reason;
        self
    }

    #[must_use]
    pub fn with_frozen_behavior(mut self, frozen_behavior: StopFreezeFrozenBehavior) -> Self {
        self.0.frozen_behavior = frozen_behavior;
        self
    }

    #[must_use]
    pub fn with_required_reliability_service(
        mut self,
        required_reliability_service: RequiredReliabilityService,
    ) -> Self {
        self.0.required_reliability_service = required_reliability_service;
        self
    }

    #[must_use]
    pub fn with_request_id(mut self, request_id: u32) -> Self {
        self.0.request_id = request_id;
        self
    }
}