#[non_exhaustive]pub struct CavageVerified {
pub key_id: String,
pub algorithm: Option<String>,
pub signature_base: String,
}Expand description
Successful 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.key_id: StringThe keyId= parameter from the signature header.
algorithm: Option<String>Algorithm hint as it appeared on the wire, if any.
signature_base: StringThe canonical signature base string that was verified.
Trait Implementations§
Source§impl Clone for CavageVerified
impl Clone for CavageVerified
Source§fn clone(&self) -> CavageVerified
fn clone(&self) -> CavageVerified
Returns a duplicate of the value. Read more
1.0.0 · 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 CavageVerified
impl RefUnwindSafe for CavageVerified
impl Send for CavageVerified
impl Sync for CavageVerified
impl Unpin for CavageVerified
impl UnsafeUnpin for CavageVerified
impl UnwindSafe for CavageVerified
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