pub struct SignatureEnvelope {
pub algorithm: String<16>,
pub signer: String<STRING_CAP>,
pub signature: Vec<u8, 64>,
}Expand description
Compact ed25519 signature envelope.
Fields§
§algorithm: String<16>§signer: String<STRING_CAP>§signature: Vec<u8, 64>Trait Implementations§
Source§impl Clone for SignatureEnvelope
impl Clone for SignatureEnvelope
Source§fn clone(&self) -> SignatureEnvelope
fn clone(&self) -> SignatureEnvelope
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 moreAuto Trait Implementations§
impl Freeze for SignatureEnvelope
impl RefUnwindSafe for SignatureEnvelope
impl Send for SignatureEnvelope
impl Sync for SignatureEnvelope
impl Unpin for SignatureEnvelope
impl UnsafeUnpin for SignatureEnvelope
impl UnwindSafe for SignatureEnvelope
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