pub struct AgentNotification {
pub id: AgentId,
pub role: AgentRole,
pub status: AgentStatus,
pub summary: String,
}Expand description
Notification sent to parent when a sub-agent completes.
Fields§
§id: AgentId§role: AgentRole§status: AgentStatus§summary: StringTrait Implementations§
Source§impl Clone for AgentNotification
impl Clone for AgentNotification
Source§fn clone(&self) -> AgentNotification
fn clone(&self) -> AgentNotification
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 AgentNotification
impl RefUnwindSafe for AgentNotification
impl Send for AgentNotification
impl Sync for AgentNotification
impl Unpin for AgentNotification
impl UnsafeUnpin for AgentNotification
impl UnwindSafe for AgentNotification
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