pub struct AgentContextEnvelope {Show 15 fields
pub run_id: NonEmptyString,
pub step_id: Option<NonEmptyString>,
pub skill: NonEmptyString,
pub instructions: NonEmptyString,
pub inputs: JsonObject,
pub allowed_tools: Vec<NonEmptyString>,
pub current_context: Vec<ContextEntry>,
pub historical_context: Vec<ContextEntry>,
pub provenance: Vec<ProvenanceEntry>,
pub context: Option<AgentContextProfiles>,
pub voice_profile: Option<ProfileFile>,
pub quality_profile: Option<QualityProfile>,
pub execution_location: Option<ExecutionLocation>,
pub output: Option<BTreeMap<String, OutputField>>,
pub trust_boundary: NonEmptyString,
}Fields§
§run_id: NonEmptyString§step_id: Option<NonEmptyString>§skill: NonEmptyString§instructions: NonEmptyString§inputs: JsonObject§allowed_tools: Vec<NonEmptyString>§current_context: Vec<ContextEntry>§historical_context: Vec<ContextEntry>§provenance: Vec<ProvenanceEntry>§context: Option<AgentContextProfiles>§voice_profile: Option<ProfileFile>§quality_profile: Option<QualityProfile>§execution_location: Option<ExecutionLocation>§output: Option<BTreeMap<String, OutputField>>§trust_boundary: NonEmptyStringTrait Implementations§
Source§impl Clone for AgentContextEnvelope
impl Clone for AgentContextEnvelope
Source§fn clone(&self) -> AgentContextEnvelope
fn clone(&self) -> AgentContextEnvelope
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 AgentContextEnvelope
impl Debug for AgentContextEnvelope
Source§impl<'de> Deserialize<'de> for AgentContextEnvelope
impl<'de> Deserialize<'de> for AgentContextEnvelope
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 AgentContextEnvelope
impl PartialEq for AgentContextEnvelope
Source§fn eq(&self, other: &AgentContextEnvelope) -> bool
fn eq(&self, other: &AgentContextEnvelope) -> bool
Tests for
self and other values to be equal, and is used by ==.Source§impl RunxSchema for AgentContextEnvelope
impl RunxSchema for AgentContextEnvelope
Source§fn json_schema() -> Value
fn json_schema() -> Value
The inlined JSON Schema for this type.
Source§impl Serialize for AgentContextEnvelope
impl Serialize for AgentContextEnvelope
impl StructuralPartialEq for AgentContextEnvelope
Auto Trait Implementations§
impl Freeze for AgentContextEnvelope
impl RefUnwindSafe for AgentContextEnvelope
impl Send for AgentContextEnvelope
impl Sync for AgentContextEnvelope
impl Unpin for AgentContextEnvelope
impl UnsafeUnpin for AgentContextEnvelope
impl UnwindSafe for AgentContextEnvelope
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