pub enum NodeKind {
Local,
Heap,
Global,
Parameter,
Return,
Unknown,
}Expand description
Classification of a points-to node.
Variants§
Local
A local (stack-allocated) variable.
Heap
A heap-allocated object (constructor application, closure).
Global
A global or top-level constant.
Parameter
A function parameter.
Return
A return value placeholder.
Unknown
Unknown / conservative.
Trait Implementations§
impl Eq for NodeKind
impl StructuralPartialEq for NodeKind
Auto Trait Implementations§
impl Freeze for NodeKind
impl RefUnwindSafe for NodeKind
impl Send for NodeKind
impl Sync for NodeKind
impl Unpin for NodeKind
impl UnsafeUnpin for NodeKind
impl UnwindSafe for NodeKind
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