pub struct SignedEnvelope {
pub payload: Vec<u8>,
pub sig: Vec<u8>,
pub key_version: u32,
pub bridge_pubkey_multibase: String,
}Expand description
Bridge-signed wrapper around an A2A payload. payload is the already-
canonical JSON-serialized A2A JsonRpcRequest; the bridge canonicalizes
(sorted keys, no whitespace) BEFORE construction. Verification re-uses
these exact bytes — never re-canonicalize on receive.
Fields§
§payload: Vec<u8>§sig: Vec<u8>§key_version: u32§bridge_pubkey_multibase: StringImplementations§
Source§impl SignedEnvelope
impl SignedEnvelope
pub fn canonical_payload_for_signing(&self) -> &[u8] ⓘ
Trait Implementations§
Source§impl Clone for SignedEnvelope
impl Clone for SignedEnvelope
Source§fn clone(&self) -> SignedEnvelope
fn clone(&self) -> SignedEnvelope
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 SignedEnvelope
impl Debug for SignedEnvelope
Source§impl<'de> Deserialize<'de> for SignedEnvelope
impl<'de> Deserialize<'de> for SignedEnvelope
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 SignedEnvelope
impl PartialEq for SignedEnvelope
Source§fn eq(&self, other: &SignedEnvelope) -> bool
fn eq(&self, other: &SignedEnvelope) -> bool
Tests for
self and other values to be equal, and is used by ==.Source§impl Serialize for SignedEnvelope
impl Serialize for SignedEnvelope
impl Eq for SignedEnvelope
impl StructuralPartialEq for SignedEnvelope
Auto Trait Implementations§
impl Freeze for SignedEnvelope
impl RefUnwindSafe for SignedEnvelope
impl Send for SignedEnvelope
impl Sync for SignedEnvelope
impl Unpin for SignedEnvelope
impl UnsafeUnpin for SignedEnvelope
impl UnwindSafe for SignedEnvelope
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
Source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
Source§impl<Q, K> Equivalent<K> for Q
impl<Q, K> Equivalent<K> for Q
Source§impl<Q, K> Equivalent<K> for Q
impl<Q, K> Equivalent<K> for Q
Source§fn equivalent(&self, key: &K) -> bool
fn equivalent(&self, key: &K) -> bool
Compare self to
key and return true if they are equal.