pub struct GraphIdentityRejection {
pub path: RepositoryNodePath,
pub span: SourceSpan,
pub parser: ParserKind,
pub field: GraphIdentityField,
pub reason: GraphIdentityRejectionReason,
pub fact_index: u64,
}Expand description
One bounded, generation-owned parser identity rejection.
Fields§
§path: RepositoryNodePathRepository-relative source path containing the rejected fact.
span: SourceSpanExact bounded source span of the rejected fact.
parser: ParserKindParser strategy that produced the rejected fact.
field: GraphIdentityFieldIdentity field that failed admission.
reason: GraphIdentityRejectionReasonStable rejection category without the rejected raw value.
fact_index: u64Internal parser-fact ordinal used to distinguish same-span facts.
This identity is durable but intentionally omitted from the public wire shape; it only prevents distinct parser observations that share a line and zero-column fallback from collapsing in storage.
Trait Implementations§
Source§impl Clone for GraphIdentityRejection
impl Clone for GraphIdentityRejection
Source§fn clone(&self) -> GraphIdentityRejection
fn clone(&self) -> GraphIdentityRejection
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 GraphIdentityRejection
impl Debug for GraphIdentityRejection
Source§impl<'de> Deserialize<'de> for GraphIdentityRejection
impl<'de> Deserialize<'de> for GraphIdentityRejection
Source§fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
impl Eq for GraphIdentityRejection
Source§impl PartialEq for GraphIdentityRejection
impl PartialEq for GraphIdentityRejection
Source§fn eq(&self, other: &GraphIdentityRejection) -> bool
fn eq(&self, other: &GraphIdentityRejection) -> bool
Tests for
self and other values to be equal, and is used by ==.Source§impl Serialize for GraphIdentityRejection
impl Serialize for GraphIdentityRejection
impl StructuralPartialEq for GraphIdentityRejection
Auto Trait Implementations§
impl Freeze for GraphIdentityRejection
impl RefUnwindSafe for GraphIdentityRejection
impl Send for GraphIdentityRejection
impl Sync for GraphIdentityRejection
impl Unpin for GraphIdentityRejection
impl UnsafeUnpin for GraphIdentityRejection
impl UnwindSafe for GraphIdentityRejection
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<T> DeserializeOwned for Twhere
T: for<'de> Deserialize<'de>,
§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.