pub enum UnresolvedReason {
SyntaxAnchoredMiss,
SyntaxOnly,
CompilerUnresolved,
}Expand description
Why a reference remained outside the graph. These are deliberately outcome descriptions, not guesses at a compiler diagnostic.
Variants§
SyntaxAnchoredMiss
Source evidence pointed into the corpus, but did not identify one target (missing member, ambiguity, or incomplete type facts).
SyntaxOnly
Source extraction had no corpus anchor and no compiler index was available to distinguish an external/builtin from a missed edge.
CompilerUnresolved
A compiler index was present but supplied no in-corpus target.
Implementations§
Trait Implementations§
Source§impl Clone for UnresolvedReason
impl Clone for UnresolvedReason
Source§fn clone(&self) -> UnresolvedReason
fn clone(&self) -> UnresolvedReason
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 moreimpl Copy for UnresolvedReason
Source§impl Debug for UnresolvedReason
impl Debug for UnresolvedReason
Source§impl<'de> Deserialize<'de> for UnresolvedReason
impl<'de> Deserialize<'de> for UnresolvedReason
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 UnresolvedReason
Source§impl Hash for UnresolvedReason
impl Hash for UnresolvedReason
Source§impl Ord for UnresolvedReason
impl Ord for UnresolvedReason
Source§fn cmp(&self, other: &UnresolvedReason) -> Ordering
fn cmp(&self, other: &UnresolvedReason) -> 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 UnresolvedReason
impl PartialEq for UnresolvedReason
Source§impl PartialOrd for UnresolvedReason
impl PartialOrd for UnresolvedReason
Source§impl Serialize for UnresolvedReason
impl Serialize for UnresolvedReason
impl StructuralPartialEq for UnresolvedReason
Auto Trait Implementations§
impl Freeze for UnresolvedReason
impl RefUnwindSafe for UnresolvedReason
impl Send for UnresolvedReason
impl Sync for UnresolvedReason
impl Unpin for UnresolvedReason
impl UnsafeUnpin for UnresolvedReason
impl UnwindSafe for UnresolvedReason
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