pub struct SimulatorDefaults {
pub trace_capacity: usize,
pub tcp_performance_preset: PerformancePreset,
pub rtu_performance_preset: PerformancePreset,
pub readiness_timeout_ms: Option<u64>,
}Expand description
Defaults applied during session compilation.
Fields§
§trace_capacity: usize§tcp_performance_preset: PerformancePreset§rtu_performance_preset: PerformancePreset§readiness_timeout_ms: Option<u64>Trait Implementations§
Source§impl Clone for SimulatorDefaults
impl Clone for SimulatorDefaults
Source§fn clone(&self) -> SimulatorDefaults
fn clone(&self) -> SimulatorDefaults
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 SimulatorDefaults
impl Debug for SimulatorDefaults
Source§impl Default for SimulatorDefaults
impl Default for SimulatorDefaults
Source§impl<'de> Deserialize<'de> for SimulatorDefaults
impl<'de> Deserialize<'de> for SimulatorDefaults
Source§fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
Auto Trait Implementations§
impl Freeze for SimulatorDefaults
impl RefUnwindSafe for SimulatorDefaults
impl Send for SimulatorDefaults
impl Sync for SimulatorDefaults
impl Unpin for SimulatorDefaults
impl UnsafeUnpin for SimulatorDefaults
impl UnwindSafe for SimulatorDefaults
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