pub enum ProfileEvidence {
Pending,
Passed(EvidenceReference),
NotApplicable(ReviewedNotApplicable),
}Expand description
State of one mandatory complete-support evidence slot.
Variants§
Pending
Evidence has not passed; valid only for candidates.
Passed(EvidenceReference)
Evidence passed and is bound to every applicable owner identity.
NotApplicable(ReviewedNotApplicable)
Evidence does not apply for a schema-admitted independently reviewed reason.
Trait Implementations§
Source§impl Clone for ProfileEvidence
impl Clone for ProfileEvidence
Source§fn clone(&self) -> ProfileEvidence
fn clone(&self) -> ProfileEvidence
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 moreSource§impl Debug for ProfileEvidence
impl Debug for ProfileEvidence
Source§impl PartialEq for ProfileEvidence
impl PartialEq for ProfileEvidence
Source§impl Serialize for ProfileEvidence
impl Serialize for ProfileEvidence
impl Copy for ProfileEvidence
impl Eq for ProfileEvidence
impl StructuralPartialEq for ProfileEvidence
Auto Trait Implementations§
impl Freeze for ProfileEvidence
impl RefUnwindSafe for ProfileEvidence
impl Send for ProfileEvidence
impl Sync for ProfileEvidence
impl Unpin for ProfileEvidence
impl UnwindSafe for ProfileEvidence
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
Source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
§impl<Q, K> Equivalent<K> for Q
impl<Q, K> Equivalent<K> for Q
§fn equivalent(&self, key: &K) -> bool
fn equivalent(&self, key: &K) -> bool
Compare self to
key and return true if they are equal.