pub struct IdleToolCall {
pub name: String,
pub args_summary: String,
pub success: bool,
}Expand description
Tool call in idle
Fields§
§name: StringTool name
args_summary: StringArguments (truncated)
success: boolSuccess/failure
Trait Implementations§
Source§impl Clone for IdleToolCall
impl Clone for IdleToolCall
Source§fn clone(&self) -> IdleToolCall
fn clone(&self) -> IdleToolCall
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 IdleToolCall
impl Debug for IdleToolCall
Source§impl<'de> Deserialize<'de> for IdleToolCall
impl<'de> Deserialize<'de> for IdleToolCall
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
Auto Trait Implementations§
impl Freeze for IdleToolCall
impl RefUnwindSafe for IdleToolCall
impl Send for IdleToolCall
impl Sync for IdleToolCall
impl Unpin for IdleToolCall
impl UnsafeUnpin for IdleToolCall
impl UnwindSafe for IdleToolCall
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