pub struct DelegateRequest {
pub agent_name: String,
pub prompt: String,
pub current_depth: usize,
}Expand description
A delegation request from the parent agent.
Fields§
§agent_name: String§prompt: String§current_depth: usizeTrait Implementations§
Source§impl Clone for DelegateRequest
impl Clone for DelegateRequest
Source§fn clone(&self) -> DelegateRequest
fn clone(&self) -> DelegateRequest
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 DelegateRequest
impl RefUnwindSafe for DelegateRequest
impl Send for DelegateRequest
impl Sync for DelegateRequest
impl Unpin for DelegateRequest
impl UnsafeUnpin for DelegateRequest
impl UnwindSafe for DelegateRequest
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