pub enum RecipientMatch {
Match,
Mismatch,
ResolutionError(String),
InspectionError(String),
}Expand description
Result of comparing expected vs actual recipients for a single credential file.
Variants§
Match
The credential’s OpenPGP recipients match the .gpg-id policy.
Mismatch
The credential’s recipients differ from the .gpg-id policy.
ResolutionError(String)
The expected recipients could not be resolved.
InspectionError(String)
The actual recipients could not be inspected.
Trait Implementations§
Source§impl Clone for RecipientMatch
impl Clone for RecipientMatch
Source§fn clone(&self) -> RecipientMatch
fn clone(&self) -> RecipientMatch
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 moreSource§impl Debug for RecipientMatch
impl Debug for RecipientMatch
impl Eq for RecipientMatch
Source§impl PartialEq for RecipientMatch
impl PartialEq for RecipientMatch
impl StructuralPartialEq for RecipientMatch
Auto Trait Implementations§
impl Freeze for RecipientMatch
impl RefUnwindSafe for RecipientMatch
impl Send for RecipientMatch
impl Sync for RecipientMatch
impl Unpin for RecipientMatch
impl UnsafeUnpin for RecipientMatch
impl UnwindSafe for RecipientMatch
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