pub struct VerifySignature { /* private fields */ }Expand description
Per-signature result extracted from a super::VerifyResult.
Implementations§
Source§impl VerifySignature
impl VerifySignature
Sourcepub fn status_is_valid(&self) -> bool
pub fn status_is_valid(&self) -> bool
True iff the signature was valid.
Sourcepub fn status(&self) -> SignatureStatus
pub fn status(&self) -> SignatureStatus
Categorize the verification outcome.
Sourcepub fn handle(&self) -> Result<Signature<'_>>
pub fn handle(&self) -> Result<Signature<'_>>
The full Signature handle, for inspection of subpackets, key
flags, and other metadata. The returned handle borrows self.
Auto Trait Implementations§
impl !Send for VerifySignature
impl !Sync for VerifySignature
impl Freeze for VerifySignature
impl RefUnwindSafe for VerifySignature
impl Unpin for VerifySignature
impl UnsafeUnpin for VerifySignature
impl UnwindSafe for VerifySignature
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