pub struct JidokaConfig {
pub energy_tolerance: f64,
pub check_finite: bool,
pub constraint_tolerance: f64,
pub check_energy: bool,
pub severity_classifier: SeverityClassifier,
}Expand description
Jidoka guard configuration.
Fields§
§energy_tolerance: f64Maximum allowed relative energy drift.
check_finite: boolNaN/Inf detection enabled.
constraint_tolerance: f64Constraint violation threshold.
check_energy: boolEnable energy conservation check.
severity_classifier: SeverityClassifierSeverity classifier for graduated responses.
Trait 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