pub struct Verified {
pub principal: String,
pub fingerprint: String,
}Expand description
Result of a successful verify call.
Fields§
§principal: StringA principal pattern from the allowed-signers file that matched the signer identity.
fingerprint: StringThe fingerprint of the signing public key, in SHA256:<base64> form.
Trait Implementations§
Auto Trait Implementations§
impl Freeze for Verified
impl RefUnwindSafe for Verified
impl Send for Verified
impl Sync for Verified
impl Unpin for Verified
impl UnsafeUnpin for Verified
impl UnwindSafe for Verified
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