pub enum UnresolvedReason {
LocalOrGlobal,
MemberOrDynamic,
}Expand description
Best-effort classification of why a callee did not resolve to an edge.
Variants§
LocalOrGlobal
A bare identifier call with no matching import binding (a same-module local function, a global, or a re-bound callee).
MemberOrDynamic
A computed / member-expression callee (obj.method, dynamic dispatch).
Trait Implementations§
Source§impl Clone for UnresolvedReason
impl Clone for UnresolvedReason
impl Copy for UnresolvedReason
Source§impl Debug for UnresolvedReason
impl Debug for UnresolvedReason
impl Eq for UnresolvedReason
Source§impl PartialEq for UnresolvedReason
impl PartialEq 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
Source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
Source§impl<Q, K> Equivalent<K> for Q
impl<Q, K> Equivalent<K> for Q
Source§impl<Q, K> Equivalent<K> for Q
impl<Q, K> Equivalent<K> for Q
Source§fn equivalent(&self, key: &K) -> bool
fn equivalent(&self, key: &K) -> bool
Compare self to
key and return true if they are equal.