pub enum SymbolicDef<'tcx> {
Param(usize),
Constant(u128),
Use(usize),
Cast(usize, String),
Binary(BinOp, usize, AnaOperand),
UnOp(UnOp),
Call(String, Vec<AnaOperand>),
Ref(usize),
PtrOffset(BinOp, usize, AnaOperand, PlaceTy<'tcx>),
}Variants§
Param(usize)
Constant(u128)
Use(usize)
Cast(usize, String)
Binary(BinOp, usize, AnaOperand)
UnOp(UnOp)
Call(String, Vec<AnaOperand>)
Ref(usize)
PtrOffset(BinOp, usize, AnaOperand, PlaceTy<'tcx>)
Pointer offset operation
Trait Implementations§
Source§impl<'tcx> Clone for SymbolicDef<'tcx>
impl<'tcx> Clone for SymbolicDef<'tcx>
Source§fn clone(&self) -> SymbolicDef<'tcx>
fn clone(&self) -> SymbolicDef<'tcx>
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<'tcx> Debug for SymbolicDef<'tcx>
impl<'tcx> Debug for SymbolicDef<'tcx>
Source§impl<'tcx> PartialEq for SymbolicDef<'tcx>
impl<'tcx> PartialEq for SymbolicDef<'tcx>
impl<'tcx> Eq for SymbolicDef<'tcx>
impl<'tcx> StructuralPartialEq for SymbolicDef<'tcx>
Auto Trait Implementations§
impl<'tcx> Freeze for SymbolicDef<'tcx>
impl<'tcx> !RefUnwindSafe for SymbolicDef<'tcx>
impl<'tcx> Send for SymbolicDef<'tcx>
impl<'tcx> Sync for SymbolicDef<'tcx>
impl<'tcx> Unpin for SymbolicDef<'tcx>
impl<'tcx> !UnwindSafe for SymbolicDef<'tcx>
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<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
Checks if this value is equivalent to the given key. Read more
§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.