pub struct WorkflowVendorSignature {
pub vendor_id: String,
pub public_key: PublicKey,
pub signature: Signature,
}Expand description
Detached vendor signature over a canonical workflow receipt body.
Fields§
§vendor_id: String§public_key: PublicKey§signature: SignatureTrait Implementations§
Source§impl Clone for WorkflowVendorSignature
impl Clone for WorkflowVendorSignature
Source§fn clone(&self) -> WorkflowVendorSignature
fn clone(&self) -> WorkflowVendorSignature
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 WorkflowVendorSignature
impl Debug for WorkflowVendorSignature
Source§impl<'de> Deserialize<'de> for WorkflowVendorSignature
impl<'de> Deserialize<'de> for WorkflowVendorSignature
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 WorkflowVendorSignature
impl RefUnwindSafe for WorkflowVendorSignature
impl Send for WorkflowVendorSignature
impl Sync for WorkflowVendorSignature
impl Unpin for WorkflowVendorSignature
impl UnsafeUnpin for WorkflowVendorSignature
impl UnwindSafe for WorkflowVendorSignature
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