pub struct TurnToolOutcome {
pub result: String,
pub is_error: bool,
}Expand description
Result of executing one tool call via TurnToolExecutor.
Fields§
§result: String§is_error: boolTrait Implementations§
Source§impl Clone for TurnToolOutcome
impl Clone for TurnToolOutcome
Source§fn clone(&self) -> TurnToolOutcome
fn clone(&self) -> TurnToolOutcome
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 moreAuto Trait Implementations§
impl Freeze for TurnToolOutcome
impl RefUnwindSafe for TurnToolOutcome
impl Send for TurnToolOutcome
impl Sync for TurnToolOutcome
impl Unpin for TurnToolOutcome
impl UnsafeUnpin for TurnToolOutcome
impl UnwindSafe for TurnToolOutcome
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