pub enum ToolResultWithSkip {
ToolResult(ToolResponse),
Skip {
tool_call_id: String,
reason: String,
},
}Variants§
Auto Trait Implementations§
impl Freeze for ToolResultWithSkip
impl RefUnwindSafe for ToolResultWithSkip
impl Send for ToolResultWithSkip
impl Sync for ToolResultWithSkip
impl Unpin for ToolResultWithSkip
impl UnwindSafe for ToolResultWithSkip
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