pub enum IdentityValidation {
Valid {
distinct: u16,
attested: u16,
aggregate_confidence: f32,
},
Underdetermined {
distinct: u16,
attested: u16,
},
DefinitiveCollapse,
}Expand description
The verdict of validate_enumerated_identity.
Variants§
Valid
Enough distinct, crypto-attested identifiers; identity stands as an enumerated
state. aggregate_confidence is the noisy-OR combination (always < 1.0).
Underdetermined
Too few distinct identifiers and/or crypto attestations.
DefinitiveCollapse
A binding claims certainty (confidence >= 1.0) — REJECTED. Identity must
remain a confidence-relation; collapsing it to a definitive identifier
destroys the out-of-band remainder.
Trait Implementations§
Source§impl Clone for IdentityValidation
impl Clone for IdentityValidation
Source§fn clone(&self) -> IdentityValidation
fn clone(&self) -> IdentityValidation
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 IdentityValidation
impl Debug for IdentityValidation
Source§impl PartialEq for IdentityValidation
impl PartialEq for IdentityValidation
Source§fn eq(&self, other: &IdentityValidation) -> bool
fn eq(&self, other: &IdentityValidation) -> bool
Tests for
self and other values to be equal, and is used by ==.impl Copy for IdentityValidation
impl StructuralPartialEq for IdentityValidation
Auto Trait Implementations§
impl Freeze for IdentityValidation
impl RefUnwindSafe for IdentityValidation
impl Send for IdentityValidation
impl Sync for IdentityValidation
impl Unpin for IdentityValidation
impl UnsafeUnpin for IdentityValidation
impl UnwindSafe for IdentityValidation
Blanket Implementations§
§impl<S, A> Aggregate<Result<S, Error>> for Awhere
A: Aggregate<S>,
impl<S, A> Aggregate<Result<S, Error>> for Awhere
A: Aggregate<S>,
Aggregate shares in an MPC protocol.
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<T> Instrument for T
impl<T> Instrument for T
§fn instrument(self, span: Span) -> Instrumented<Self>
fn instrument(self, span: Span) -> Instrumented<Self>
§fn in_current_span(self) -> Instrumented<Self>
fn in_current_span(self) -> Instrumented<Self>
Source§impl<T> IntoEither for T
impl<T> IntoEither for T
Source§fn into_either(self, into_left: bool) -> Either<Self, Self>
fn into_either(self, into_left: bool) -> Either<Self, Self>
Converts
self into a Left variant of Either<Self, Self>
if into_left is true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read moreSource§fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
Converts
self into a Left variant of Either<Self, Self>
if into_left(&self) returns true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read more