pub struct DelegateResult {
pub agent_name: String,
pub output: String,
pub iterations_used: usize,
}Expand description
Result of a delegation.
Fields§
§agent_name: String§output: String§iterations_used: usizeTrait Implementations§
Source§impl Clone for DelegateResult
impl Clone for DelegateResult
Source§fn clone(&self) -> DelegateResult
fn clone(&self) -> DelegateResult
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 DelegateResult
impl RefUnwindSafe for DelegateResult
impl Send for DelegateResult
impl Sync for DelegateResult
impl Unpin for DelegateResult
impl UnsafeUnpin for DelegateResult
impl UnwindSafe for DelegateResult
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