pub struct ToolCallProcessingResult {
pub tool_calls: Vec<ToolCall>,
pub cleaned_content: Option<String>,
}Expand description
Result of processing tool calls and content cleaning
Fields§
§tool_calls: Vec<ToolCall>§cleaned_content: Option<String>Trait Implementations§
Auto Trait Implementations§
impl Freeze for ToolCallProcessingResult
impl RefUnwindSafe for ToolCallProcessingResult
impl Send for ToolCallProcessingResult
impl Sync for ToolCallProcessingResult
impl Unpin for ToolCallProcessingResult
impl UnwindSafe for ToolCallProcessingResult
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