struct IdentityRejectionKey {
path: RepositoryNodePath,
span: IdentitySpan,
parser: u8,
field: GraphIdentityField,
reason: GraphIdentityRejectionReason,
fact_index: u64,
}Expand description
Exact membership key for one retained typed identity rejection detail.
The ordered key is kept beside the deterministic detail vector so replay checks do not scan every previously retained row.
Fields§
§path: RepositoryNodePathRepository-relative source path containing the rejected fact.
span: IdentitySpanExact bounded source span of the rejected fact.
parser: u8Parser strategy that produced the rejected fact.
field: GraphIdentityFieldIdentity field that failed admission.
reason: GraphIdentityRejectionReasonStable rejection category.
fact_index: u64Internal parser-fact ordinal.
Trait Implementations§
Source§impl Clone for IdentityRejectionKey
impl Clone for IdentityRejectionKey
Source§fn clone(&self) -> IdentityRejectionKey
fn clone(&self) -> IdentityRejectionKey
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 IdentityRejectionKey
impl Debug for IdentityRejectionKey
impl Eq for IdentityRejectionKey
Source§impl From<&GraphIdentityRejection> for IdentityRejectionKey
impl From<&GraphIdentityRejection> for IdentityRejectionKey
Source§fn from(rejection: &GraphIdentityRejection) -> Self
fn from(rejection: &GraphIdentityRejection) -> Self
Converts to this type from the input type.
Source§impl Ord for IdentityRejectionKey
impl Ord for IdentityRejectionKey
Source§fn cmp(&self, other: &IdentityRejectionKey) -> Ordering
fn cmp(&self, other: &IdentityRejectionKey) -> Ordering
1.21.0 (const: unstable) · Source§fn max(self, other: Self) -> Selfwhere
Self: Sized,
fn max(self, other: Self) -> Selfwhere
Self: Sized,
Compares and returns the maximum of two values. Read more
Source§impl PartialEq for IdentityRejectionKey
impl PartialEq for IdentityRejectionKey
Source§fn eq(&self, other: &IdentityRejectionKey) -> bool
fn eq(&self, other: &IdentityRejectionKey) -> bool
Tests for
self and other values to be equal, and is used by ==.Source§impl PartialOrd for IdentityRejectionKey
impl PartialOrd for IdentityRejectionKey
impl StructuralPartialEq for IdentityRejectionKey
Auto Trait Implementations§
impl Freeze for IdentityRejectionKey
impl RefUnwindSafe for IdentityRejectionKey
impl Send for IdentityRejectionKey
impl Sync for IdentityRejectionKey
impl Unpin for IdentityRejectionKey
impl UnsafeUnpin for IdentityRejectionKey
impl UnwindSafe for IdentityRejectionKey
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> Comparable<K> for Q
impl<Q, K> Comparable<K> for Q
§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.§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