pub struct AgentEnvelope {
pub schema_version: u16,
pub relay_id: String,
pub context: OclaRequestContext,
pub from_agent_id: String,
pub to_agent_id: String,
pub capsule_ref: String,
pub budget_tokens: u64,
}Expand description
Canonical, payload-free admission contract for one A2A relay.
budget_tokens is an authorization ceiling, never observed delivery or
savings evidence. A transport must create its own measured token envelope
only after it actually materializes and delivers the handoff.
Fields§
§schema_version: u16[PUBLIC] Agent-envelope schema version.
relay_id: String[PII] Content-derived relay identifier for idempotent admission and event joins.
context: OclaRequestContext[PII] Request context containing correlation identifiers.
from_agent_id: String[PII] Sending agent identifier.
to_agent_id: String[PII] Receiving agent identifier.
capsule_ref: String[PII] Capsule reference that can identify workspace content.
budget_tokens: u64[INTERNAL] Authorized token budget.
Implementations§
Source§impl AgentEnvelope
impl AgentEnvelope
Sourcepub fn assign_relay_id(&mut self) -> OclaResult<()>
pub fn assign_relay_id(&mut self) -> OclaResult<()>
Assigns the deterministic identity after all relay fields are set.
Sourcepub fn computed_relay_id(&self) -> OclaResult<String>
pub fn computed_relay_id(&self) -> OclaResult<String>
Derives a stable relay ID without including payload bytes or the ID itself.
pub fn validate(&self) -> OclaResult<()>
Trait Implementations§
Source§impl Clone for AgentEnvelope
impl Clone for AgentEnvelope
Source§fn clone(&self) -> AgentEnvelope
fn clone(&self) -> AgentEnvelope
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 AgentEnvelope
impl Debug for AgentEnvelope
Source§impl<'de> Deserialize<'de> for AgentEnvelope
impl<'de> Deserialize<'de> for AgentEnvelope
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
impl Eq for AgentEnvelope
Source§impl PartialEq for AgentEnvelope
impl PartialEq for AgentEnvelope
Source§impl Serialize for AgentEnvelope
impl Serialize for AgentEnvelope
impl StructuralPartialEq for AgentEnvelope
Auto Trait Implementations§
impl Freeze for AgentEnvelope
impl RefUnwindSafe for AgentEnvelope
impl Send for AgentEnvelope
impl Sync for AgentEnvelope
impl Unpin for AgentEnvelope
impl UnsafeUnpin for AgentEnvelope
impl UnwindSafe for AgentEnvelope
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