pub struct SignerVerification {
pub signer_index: usize,
pub verified: bool,
pub error: Option<String>,
pub cert_index: Option<usize>,
}Expand description
Per-signer verification result.
Fields§
§signer_index: usizeIndex of the signer in signer_infos.
verified: boolWhether this signer’s signature verified.
error: Option<String>Error message if verification failed.
cert_index: Option<usize>Index into signed_data.certificates of the cert this signer
was resolved to (or None if not resolved).
Trait Implementations§
Source§impl Clone for SignerVerification
impl Clone for SignerVerification
Source§fn clone(&self) -> SignerVerification
fn clone(&self) -> SignerVerification
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 SignerVerification
impl RefUnwindSafe for SignerVerification
impl Send for SignerVerification
impl Sync for SignerVerification
impl Unpin for SignerVerification
impl UnsafeUnpin for SignerVerification
impl UnwindSafe for SignerVerification
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