pub struct AgentActInvocation {
pub id: NonEmptyString,
pub source_type: AgentActSourceType,
pub agent: Option<NonEmptyString>,
pub task: Option<NonEmptyString>,
pub envelope: AgentContextEnvelope,
}Fields§
§id: NonEmptyString§source_type: AgentActSourceType§agent: Option<NonEmptyString>§task: Option<NonEmptyString>§envelope: AgentContextEnvelopeTrait Implementations§
Source§impl Clone for AgentActInvocation
impl Clone for AgentActInvocation
Source§fn clone(&self) -> AgentActInvocation
fn clone(&self) -> AgentActInvocation
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 Debug for AgentActInvocation
impl Debug for AgentActInvocation
Source§impl<'de> Deserialize<'de> for AgentActInvocation
impl<'de> Deserialize<'de> for AgentActInvocation
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 AgentActInvocation
impl PartialEq for AgentActInvocation
Source§fn eq(&self, other: &AgentActInvocation) -> bool
fn eq(&self, other: &AgentActInvocation) -> bool
Tests for
self and other values to be equal, and is used by ==.Source§impl RunxSchema for AgentActInvocation
impl RunxSchema for AgentActInvocation
Source§fn json_schema() -> Value
fn json_schema() -> Value
The inlined JSON Schema for this type.
Source§impl Serialize for AgentActInvocation
impl Serialize for AgentActInvocation
impl StructuralPartialEq for AgentActInvocation
Auto Trait Implementations§
impl Freeze for AgentActInvocation
impl RefUnwindSafe for AgentActInvocation
impl Send for AgentActInvocation
impl Sync for AgentActInvocation
impl Unpin for AgentActInvocation
impl UnsafeUnpin for AgentActInvocation
impl UnwindSafe for AgentActInvocation
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