pub struct AuditEntry {
pub path: PathBuf,
pub expected_recipients: Vec<String>,
pub actual_recipients: Vec<String>,
pub match_result: RecipientMatch,
}Expand description
An audit entry describing the recipient match status for one credential file.
Fields§
§path: PathBufPath to the credential file.
expected_recipients: Vec<String>Expected recipient key IDs (16-char uppercase hex).
actual_recipients: Vec<String>Actual recipient key IDs extracted from the OpenPGP packets.
match_result: RecipientMatchWhether the expected and actual recipients match.
Trait Implementations§
Source§impl Clone for AuditEntry
impl Clone for AuditEntry
Source§fn clone(&self) -> AuditEntry
fn clone(&self) -> AuditEntry
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 AuditEntry
impl RefUnwindSafe for AuditEntry
impl Send for AuditEntry
impl Sync for AuditEntry
impl Unpin for AuditEntry
impl UnsafeUnpin for AuditEntry
impl UnwindSafe for AuditEntry
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