struct IdentityFactKey {
span: IdentitySpan,
parser: u8,
owner: u8,
fact_index: u64,
}Expand description
Internal identity for one observed parser fact, independent of retained detail rows. The detail vector is deliberately capped, but omission counts must still deduplicate repeated projections after that cap.
Fields§
§span: IdentitySpanExact bounded source span of the parser fact.
parser: u8Stable local discriminator for the parser strategy.
owner: u8Admission owner for distinguishing parser identity from its derived resolution-key outcome when both share one parser fact ordinal.
fact_index: u64Internal parser-fact ordinal.
Trait Implementations§
Source§impl Clone for IdentityFactKey
impl Clone for IdentityFactKey
Source§fn clone(&self) -> IdentityFactKey
fn clone(&self) -> IdentityFactKey
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 IdentityFactKey
impl Debug for IdentityFactKey
impl Eq for IdentityFactKey
Source§impl Ord for IdentityFactKey
impl Ord for IdentityFactKey
Source§fn cmp(&self, other: &IdentityFactKey) -> Ordering
fn cmp(&self, other: &IdentityFactKey) -> 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 IdentityFactKey
impl PartialEq for IdentityFactKey
Source§fn eq(&self, other: &IdentityFactKey) -> bool
fn eq(&self, other: &IdentityFactKey) -> bool
Tests for
self and other values to be equal, and is used by ==.Source§impl PartialOrd for IdentityFactKey
impl PartialOrd for IdentityFactKey
impl StructuralPartialEq for IdentityFactKey
Auto Trait Implementations§
impl Freeze for IdentityFactKey
impl RefUnwindSafe for IdentityFactKey
impl Send for IdentityFactKey
impl Sync for IdentityFactKey
impl Unpin for IdentityFactKey
impl UnsafeUnpin for IdentityFactKey
impl UnwindSafe for IdentityFactKey
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