pub struct ToolSemantics {
pub observe: Vec<String>,
pub mutate: Vec<String>,
pub plan: Vec<String>,
pub new: Vec<String>,
}Expand description
Exact tool-name semantics added to the stage router’s built-in vocabulary.
Matching is ASCII case-insensitive. These lists are additive: built-in tool names cannot be reclassified.
Fields§
§observe: Vec<String>Read-only lookup or inspection tools.
mutate: Vec<String>Tools that change task or external state.
plan: Vec<String>Explicit planning or task-decomposition tools.
new: Vec<String>Tools that demonstrate new forward activity without favoring either tier.
Implementations§
Trait Implementations§
Source§impl Clone for ToolSemantics
impl Clone for ToolSemantics
Source§fn clone(&self) -> ToolSemantics
fn clone(&self) -> ToolSemantics
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 ToolSemantics
impl Debug for ToolSemantics
Source§impl Default for ToolSemantics
impl Default for ToolSemantics
Source§fn default() -> ToolSemantics
fn default() -> ToolSemantics
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for ToolSemanticswhere
ToolSemantics: Default,
impl<'de> Deserialize<'de> for ToolSemanticswhere
ToolSemantics: Default,
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 ToolSemantics
impl PartialEq for ToolSemantics
impl Eq for ToolSemantics
impl StructuralPartialEq for ToolSemantics
Auto Trait Implementations§
impl Freeze for ToolSemantics
impl RefUnwindSafe for ToolSemantics
impl Send for ToolSemantics
impl Sync for ToolSemantics
impl Unpin for ToolSemantics
impl UnsafeUnpin for ToolSemantics
impl UnwindSafe for ToolSemantics
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
Source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
§impl<Q, K> Equivalent<K> for Q
impl<Q, K> Equivalent<K> for Q
§fn equivalent(&self, key: &K) -> bool
fn equivalent(&self, key: &K) -> bool
Compare self to
key and return true if they are equal.