pub struct ProcessSubagentEventNotification {
pub dispatch_id: String,
pub event: ProcessSubagentEvent,
}Expand description
subagents/event notification payload (child -> host). The host routes
by dispatch_id; completed/failed are terminal.
Fields§
§dispatch_id: String§event: ProcessSubagentEventTrait Implementations§
Source§impl Clone for ProcessSubagentEventNotification
impl Clone for ProcessSubagentEventNotification
Source§fn clone(&self) -> ProcessSubagentEventNotification
fn clone(&self) -> ProcessSubagentEventNotification
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 moreSource§impl<'de> Deserialize<'de> for ProcessSubagentEventNotification
impl<'de> Deserialize<'de> for ProcessSubagentEventNotification
Source§fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
Source§impl PartialEq for ProcessSubagentEventNotification
impl PartialEq for ProcessSubagentEventNotification
Source§fn eq(&self, other: &ProcessSubagentEventNotification) -> bool
fn eq(&self, other: &ProcessSubagentEventNotification) -> bool
Tests for
self and other values to be equal, and is used by ==.impl StructuralPartialEq for ProcessSubagentEventNotification
Auto Trait Implementations§
impl Freeze for ProcessSubagentEventNotification
impl RefUnwindSafe for ProcessSubagentEventNotification
impl Send for ProcessSubagentEventNotification
impl Sync for ProcessSubagentEventNotification
impl Unpin for ProcessSubagentEventNotification
impl UnsafeUnpin for ProcessSubagentEventNotification
impl UnwindSafe for ProcessSubagentEventNotification
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