pub struct IntentComplexity {
pub constraint_pressure: f64,
pub authority_breadth: f64,
pub forbidden_density: f64,
pub time_pressure: f64,
pub reversibility_weight: f64,
pub escalation_required: bool,
}Expand description
Quantified complexity signals extracted from the intent.
Fields§
§constraint_pressure: f64§forbidden_density: f64§time_pressure: f64§reversibility_weight: f64§escalation_required: boolTrait Implementations§
Source§impl Clone for IntentComplexity
impl Clone for IntentComplexity
Source§fn clone(&self) -> IntentComplexity
fn clone(&self) -> IntentComplexity
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 IntentComplexity
impl Debug for IntentComplexity
Source§impl<'de> Deserialize<'de> for IntentComplexity
impl<'de> Deserialize<'de> for IntentComplexity
Source§fn deserialize<__D>(
__deserializer: __D,
) -> Result<IntentComplexity, <__D as Deserializer<'de>>::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(
__deserializer: __D,
) -> Result<IntentComplexity, <__D as Deserializer<'de>>::Error>where
__D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
Source§impl Serialize for IntentComplexity
impl Serialize for IntentComplexity
Source§fn serialize<__S>(
&self,
__serializer: __S,
) -> Result<<__S as Serializer>::Ok, <__S as Serializer>::Error>where
__S: Serializer,
fn serialize<__S>(
&self,
__serializer: __S,
) -> Result<<__S as Serializer>::Ok, <__S as Serializer>::Error>where
__S: Serializer,
Serialize this value into the given Serde serializer. Read more
Auto Trait Implementations§
impl Freeze for IntentComplexity
impl RefUnwindSafe for IntentComplexity
impl Send for IntentComplexity
impl Sync for IntentComplexity
impl Unpin for IntentComplexity
impl UnsafeUnpin for IntentComplexity
impl UnwindSafe for IntentComplexity
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