pub struct SignatureEnvelopeV1 {
pub schema_version: String,
pub subject_identity_sha256: String,
pub signing_preimage_sha256: String,
pub algorithm: String,
pub key_id: String,
pub signature: String,
}Fields§
§schema_version: String§subject_identity_sha256: String§signing_preimage_sha256: String§algorithm: String§key_id: String§signature: StringTrait Implementations§
Source§impl Clone for SignatureEnvelopeV1
impl Clone for SignatureEnvelopeV1
Source§fn clone(&self) -> SignatureEnvelopeV1
fn clone(&self) -> SignatureEnvelopeV1
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 SignatureEnvelopeV1
impl Debug for SignatureEnvelopeV1
Source§impl<'de> Deserialize<'de> for SignatureEnvelopeV1
impl<'de> Deserialize<'de> for SignatureEnvelopeV1
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 SignatureEnvelopeV1
Source§impl PartialEq for SignatureEnvelopeV1
impl PartialEq for SignatureEnvelopeV1
Source§impl Serialize for SignatureEnvelopeV1
impl Serialize for SignatureEnvelopeV1
impl StructuralPartialEq for SignatureEnvelopeV1
Auto Trait Implementations§
impl Freeze for SignatureEnvelopeV1
impl RefUnwindSafe for SignatureEnvelopeV1
impl Send for SignatureEnvelopeV1
impl Sync for SignatureEnvelopeV1
impl Unpin for SignatureEnvelopeV1
impl UnsafeUnpin for SignatureEnvelopeV1
impl UnwindSafe for SignatureEnvelopeV1
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