pub struct ToolBatchEntry {
pub tool_name: String,
pub is_error: bool,
}Expand description
A summary entry for a batch of parallel tool results (for envelope use).
Fields§
§tool_name: String§is_error: boolTrait Implementations§
Source§impl Clone for ToolBatchEntry
impl Clone for ToolBatchEntry
Source§fn clone(&self) -> ToolBatchEntry
fn clone(&self) -> ToolBatchEntry
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 ToolBatchEntry
impl Debug for ToolBatchEntry
impl Eq for ToolBatchEntry
Source§impl PartialEq for ToolBatchEntry
impl PartialEq for ToolBatchEntry
Source§fn eq(&self, other: &ToolBatchEntry) -> bool
fn eq(&self, other: &ToolBatchEntry) -> bool
Tests for
self and other values to be equal, and is used by ==.impl StructuralPartialEq for ToolBatchEntry
Auto Trait Implementations§
impl Freeze for ToolBatchEntry
impl RefUnwindSafe for ToolBatchEntry
impl Send for ToolBatchEntry
impl Sync for ToolBatchEntry
impl Unpin for ToolBatchEntry
impl UnsafeUnpin for ToolBatchEntry
impl UnwindSafe for ToolBatchEntry
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