pub enum SignatureOperation {
Sign,
Verify,
KeyManagement,
}Expand description
Signature-related operation being attempted when a failure occurred.
Variants§
Sign
Producing a signature over a message.
Verify
Verifying a signature against a message.
KeyManagement
Key generation, import, or other key management.
Trait Implementations§
Source§impl Clone for SignatureOperation
impl Clone for SignatureOperation
Source§fn clone(&self) -> SignatureOperation
fn clone(&self) -> SignatureOperation
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 moreimpl Copy for SignatureOperation
Source§impl Debug for SignatureOperation
impl Debug for SignatureOperation
Source§impl Display for SignatureOperation
impl Display for SignatureOperation
impl Eq for SignatureOperation
Source§impl PartialEq for SignatureOperation
impl PartialEq for SignatureOperation
impl StructuralPartialEq for SignatureOperation
Auto Trait Implementations§
impl Freeze for SignatureOperation
impl RefUnwindSafe for SignatureOperation
impl Send for SignatureOperation
impl Sync for SignatureOperation
impl Unpin for SignatureOperation
impl UnsafeUnpin for SignatureOperation
impl UnwindSafe for SignatureOperation
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