pub enum ParamConstraint {
Required(RequiredParam),
Enum(EnumParam),
Range(RangeParam),
}Expand description
Structural constraint on a tool call’s parameters. Pattern/predicate matching stays in the host execution layer — the kernel only enforces shapes it can replay identically.
The addressed field is param_path, not path: it points inside the call’s arguments, and
a bare path in a kernel input is exactly the host filesystem fact §7.4 keeps out of the ABI.
RangeParam carries its bounds as fixed-point micro-units rather than f64: a range
check is an authoritative branch, and §7.1.1 keeps language-default floats out of those.
Variants§
Implementations§
Trait Implementations§
Source§impl Clone for ParamConstraint
impl Clone for ParamConstraint
Source§fn clone(&self) -> ParamConstraint
fn clone(&self) -> ParamConstraint
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 ParamConstraint
impl Debug for ParamConstraint
Source§impl<'de> Deserialize<'de> for ParamConstraint
impl<'de> Deserialize<'de> for ParamConstraint
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
impl Eq for ParamConstraint
Source§impl PartialEq for ParamConstraint
impl PartialEq for ParamConstraint
Source§impl Serialize for ParamConstraint
impl Serialize for ParamConstraint
impl StructuralPartialEq for ParamConstraint
Auto Trait Implementations§
impl Freeze for ParamConstraint
impl RefUnwindSafe for ParamConstraint
impl Send for ParamConstraint
impl Sync for ParamConstraint
impl Unpin for ParamConstraint
impl UnsafeUnpin for ParamConstraint
impl UnwindSafe for ParamConstraint
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