pub struct JidokaConfig {
pub enabled: bool,
pub stop_on_critical: bool,
pub energy_tolerance: f64,
pub angular_momentum_tolerance: f64,
}Expand description
Jidoka configuration.
Fields§
§enabled: bool§stop_on_critical: bool§energy_tolerance: f64§angular_momentum_tolerance: f64Trait Implementations§
Source§impl Clone for JidokaConfig
impl Clone for JidokaConfig
Source§fn clone(&self) -> JidokaConfig
fn clone(&self) -> JidokaConfig
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 JidokaConfig
impl Debug for JidokaConfig
Source§impl Default for JidokaConfig
impl Default for JidokaConfig
Source§impl<'de> Deserialize<'de> for JidokaConfig
impl<'de> Deserialize<'de> for JidokaConfig
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 JidokaConfig
impl RefUnwindSafe for JidokaConfig
impl Send for JidokaConfig
impl Sync for JidokaConfig
impl Unpin for JidokaConfig
impl UnsafeUnpin for JidokaConfig
impl UnwindSafe for JidokaConfig
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