pub struct SubAgentEventPayload {
pub subagent_id: String,
pub event: OrchestratorEvent,
pub timestamp: i64,
}Expand description
SubAgent 事件 Payload(用于 a3s-event)
Fields§
§subagent_id: String§event: OrchestratorEvent§timestamp: i64Trait Implementations§
Source§impl Clone for SubAgentEventPayload
impl Clone for SubAgentEventPayload
Source§fn clone(&self) -> SubAgentEventPayload
fn clone(&self) -> SubAgentEventPayload
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 moreSource§impl Debug for SubAgentEventPayload
impl Debug for SubAgentEventPayload
Source§impl<'de> Deserialize<'de> for SubAgentEventPayload
impl<'de> Deserialize<'de> for SubAgentEventPayload
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
Auto Trait Implementations§
impl Freeze for SubAgentEventPayload
impl RefUnwindSafe for SubAgentEventPayload
impl Send for SubAgentEventPayload
impl Sync for SubAgentEventPayload
impl Unpin for SubAgentEventPayload
impl UnsafeUnpin for SubAgentEventPayload
impl UnwindSafe for SubAgentEventPayload
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