pub struct ToolUseDelta {
pub id: String,
pub input_delta: String,
}Expand description
Incremental tool-use input delta.
Fields§
§id: StringTool-use identifier.
input_delta: StringIncremental JSON argument fragment.
Trait Implementations§
Source§impl Clone for ToolUseDelta
impl Clone for ToolUseDelta
Source§fn clone(&self) -> ToolUseDelta
fn clone(&self) -> ToolUseDelta
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 ToolUseDelta
impl Debug for ToolUseDelta
Source§impl PartialEq for ToolUseDelta
impl PartialEq for ToolUseDelta
Source§impl StreamEvent for ToolUseDelta
impl StreamEvent for ToolUseDelta
Source§fn event_type(&self) -> &'static str
fn event_type(&self) -> &'static str
Stable event type emitted on the wire.
impl StructuralPartialEq for ToolUseDelta
Auto Trait Implementations§
impl Freeze for ToolUseDelta
impl RefUnwindSafe for ToolUseDelta
impl Send for ToolUseDelta
impl Sync for ToolUseDelta
impl Unpin for ToolUseDelta
impl UnsafeUnpin for ToolUseDelta
impl UnwindSafe for ToolUseDelta
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