pub struct EnvelopeSignature {
pub algorithm: String,
pub public_key: String,
pub signature: String,
pub role: SignerRole,
pub signer_id: String,
}Expand description
A single signature in the envelope’s signature chain.
Fields§
§algorithm: StringAlgorithm used (e.g., “ed25519”, “secp256k1”, “ml-dsa-65”).
public_key: StringSigner’s public key (hex-encoded).
signature: StringSignature bytes (base64-encoded).
role: SignerRoleRole of this signer.
signer_id: StringSigner identity (agent_id, operator principal, etc.).
Trait Implementations§
Source§impl Clone for EnvelopeSignature
impl Clone for EnvelopeSignature
Source§fn clone(&self) -> EnvelopeSignature
fn clone(&self) -> EnvelopeSignature
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 EnvelopeSignature
impl Debug for EnvelopeSignature
Source§impl<'de> Deserialize<'de> for EnvelopeSignature
impl<'de> Deserialize<'de> for EnvelopeSignature
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 EnvelopeSignature
impl RefUnwindSafe for EnvelopeSignature
impl Send for EnvelopeSignature
impl Sync for EnvelopeSignature
impl Unpin for EnvelopeSignature
impl UnsafeUnpin for EnvelopeSignature
impl UnwindSafe for EnvelopeSignature
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