pub struct ToolScopeIntent {
pub active_tools: Vec<String>,
pub phase_label: Option<String>,
pub deferred_tools: Vec<String>,
}Expand description
Tool scope and phase management intent.
Communicates which tools are active in the current workflow phase to enable tool schema optimization (e.g., deferred tool blocks).
Fields§
§active_tools: Vec<String>Tools currently active in this workflow phase.
phase_label: Option<String>Optional label for the current workflow phase.
deferred_tools: Vec<String>Tools deferred to later phases.
Trait Implementations§
Source§impl Clone for ToolScopeIntent
impl Clone for ToolScopeIntent
Source§fn clone(&self) -> ToolScopeIntent
fn clone(&self) -> ToolScopeIntent
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 ToolScopeIntent
impl Debug for ToolScopeIntent
Source§impl<'de> Deserialize<'de> for ToolScopeIntent
impl<'de> Deserialize<'de> for ToolScopeIntent
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 ToolScopeIntent
impl PartialEq for ToolScopeIntent
Source§fn eq(&self, other: &ToolScopeIntent) -> bool
fn eq(&self, other: &ToolScopeIntent) -> bool
Tests for
self and other values to be equal, and is used by ==.Source§impl Serialize for ToolScopeIntent
impl Serialize for ToolScopeIntent
impl StructuralPartialEq for ToolScopeIntent
Auto Trait Implementations§
impl Freeze for ToolScopeIntent
impl RefUnwindSafe for ToolScopeIntent
impl Send for ToolScopeIntent
impl Sync for ToolScopeIntent
impl Unpin for ToolScopeIntent
impl UnsafeUnpin for ToolScopeIntent
impl UnwindSafe for ToolScopeIntent
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