pub enum PointsToTarget {
HeapObject(u32),
StackSlot(u32),
GlobalVar(String),
Unknown,
}Variants§
Trait Implementations§
Source§impl Clone for PointsToTarget
impl Clone for PointsToTarget
Source§fn clone(&self) -> PointsToTarget
fn clone(&self) -> PointsToTarget
Returns a duplicate of the value. Read more
1.0.0 · 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 PointsToTarget
impl Debug for PointsToTarget
Source§impl Hash for PointsToTarget
impl Hash for PointsToTarget
Source§impl PartialEq for PointsToTarget
impl PartialEq for PointsToTarget
impl Eq for PointsToTarget
impl StructuralPartialEq for PointsToTarget
Auto Trait Implementations§
impl Freeze for PointsToTarget
impl RefUnwindSafe for PointsToTarget
impl Send for PointsToTarget
impl Sync for PointsToTarget
impl Unpin for PointsToTarget
impl UnsafeUnpin for PointsToTarget
impl UnwindSafe for PointsToTarget
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