pub struct VerifiedSignature {
pub label: String,
pub components: Vec<Component>,
pub params: SignatureParams,
}Expand description
The outcome of a successful verify.
Fields§
§label: StringThe signature label.
components: Vec<Component>The covered components, in order.
params: SignatureParamsThe parsed signature parameters.
Trait Implementations§
Source§impl Clone for VerifiedSignature
impl Clone for VerifiedSignature
Source§fn clone(&self) -> VerifiedSignature
fn clone(&self) -> VerifiedSignature
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 VerifiedSignature
impl RefUnwindSafe for VerifiedSignature
impl Send for VerifiedSignature
impl Sync for VerifiedSignature
impl Unpin for VerifiedSignature
impl UnsafeUnpin for VerifiedSignature
impl UnwindSafe for VerifiedSignature
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