pub struct ConstraintDefinition {
pub id: String,
pub name: String,
pub description: String,
pub domain_tag: String,
pub dimensions: Vec<String>,
pub rule: MarginRule,
pub thresholds: ThresholdOverrides,
}Expand description
A constraint defined declaratively (JSON/TOML), not compiled Rust.
Fields§
§id: StringUnique identifier for this constraint.
name: StringHuman-readable name.
description: StringDescription shown in UI.
domain_tag: StringDomain tag (e.g., “finance”, “agentic”, “custom”).
dimensions: Vec<String>Names of state dimensions this constraint operates on.
rule: MarginRuleThe margin computation rule.
thresholds: ThresholdOverridesOptional per-channel threshold overrides.
Trait Implementations§
Source§impl Clone for ConstraintDefinition
impl Clone for ConstraintDefinition
Source§fn clone(&self) -> ConstraintDefinition
fn clone(&self) -> ConstraintDefinition
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 ConstraintDefinition
impl Debug for ConstraintDefinition
Source§impl<'de> Deserialize<'de> for ConstraintDefinition
impl<'de> Deserialize<'de> for ConstraintDefinition
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 ConstraintDefinition
impl RefUnwindSafe for ConstraintDefinition
impl Send for ConstraintDefinition
impl Sync for ConstraintDefinition
impl Unpin for ConstraintDefinition
impl UnsafeUnpin for ConstraintDefinition
impl UnwindSafe for ConstraintDefinition
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