pub enum ToolUseStatus {
InputStillStreaming,
NeedsConfirmation,
Pending,
Running,
Finished(SharedString),
Error(SharedString),
}
Variants§
Implementations§
Trait Implementations§
Source§impl Clone for ToolUseStatus
impl Clone for ToolUseStatus
Source§fn clone(&self) -> ToolUseStatus
fn clone(&self) -> ToolUseStatus
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 moreAuto Trait Implementations§
impl Freeze for ToolUseStatus
impl RefUnwindSafe for ToolUseStatus
impl Send for ToolUseStatus
impl Sync for ToolUseStatus
impl Unpin for ToolUseStatus
impl UnwindSafe for ToolUseStatus
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