#[non_exhaustive]pub struct Rfc9421Verified {
pub label: String,
pub input: SignatureInput,
pub signature_base: String,
}Expand description
Successful RFC 9421 verification report.
Fields (Non-exhaustive)§
This struct is marked as non-exhaustive
Non-exhaustive structs could have additional fields added in future. Therefore, non-exhaustive structs cannot be constructed in external crates using the traditional
Struct { .. } syntax; cannot be matched against without a wildcard ..; and struct update syntax will not work.label: StringLabel of the signature that matched.
input: SignatureInputParsed Signature-Input: entry for that label.
signature_base: StringRebuilt signature base string, for audit / logging.
Trait Implementations§
Source§impl Clone for Rfc9421Verified
impl Clone for Rfc9421Verified
Source§fn clone(&self) -> Rfc9421Verified
fn clone(&self) -> Rfc9421Verified
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 Rfc9421Verified
impl RefUnwindSafe for Rfc9421Verified
impl Send for Rfc9421Verified
impl Sync for Rfc9421Verified
impl Unpin for Rfc9421Verified
impl UnsafeUnpin for Rfc9421Verified
impl UnwindSafe for Rfc9421Verified
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