pub struct ThresholdOverrideInput {
pub pattern_entropy_rate: Option<f64>,
pub convention_drift_rate: Option<f64>,
pub coupling_delta_rate: Option<f64>,
pub boundary_violation_rate: Option<f64>,
pub expires: String,
}Expand description
Per-category threshold override for ThresholdsInput.
Fields§
§pattern_entropy_rate: Option<f64>Overridden pattern entropy rate (uses default if absent).
convention_drift_rate: Option<f64>Overridden convention drift rate.
coupling_delta_rate: Option<f64>Overridden coupling delta rate.
boundary_violation_rate: Option<f64>Overridden boundary violation rate.
expires: StringISO-8601 expiry date ("YYYY-MM-DD").
Trait Implementations§
Source§impl Clone for ThresholdOverrideInput
impl Clone for ThresholdOverrideInput
Source§fn clone(&self) -> ThresholdOverrideInput
fn clone(&self) -> ThresholdOverrideInput
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · 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 ThresholdOverrideInput
impl Debug for ThresholdOverrideInput
Source§impl<'de> Deserialize<'de> for ThresholdOverrideInput
impl<'de> Deserialize<'de> for ThresholdOverrideInput
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
Source§impl PartialEq for ThresholdOverrideInput
impl PartialEq for ThresholdOverrideInput
Source§fn eq(&self, other: &ThresholdOverrideInput) -> bool
fn eq(&self, other: &ThresholdOverrideInput) -> bool
Tests for
self and other values to be equal, and is used by ==.Source§impl Serialize for ThresholdOverrideInput
impl Serialize for ThresholdOverrideInput
impl StructuralPartialEq for ThresholdOverrideInput
Auto Trait Implementations§
impl Freeze for ThresholdOverrideInput
impl RefUnwindSafe for ThresholdOverrideInput
impl Send for ThresholdOverrideInput
impl Sync for ThresholdOverrideInput
impl Unpin for ThresholdOverrideInput
impl UnsafeUnpin for ThresholdOverrideInput
impl UnwindSafe for ThresholdOverrideInput
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