pub enum DefLocation {
Argument,
Assignment(Location),
CallReturn {
call: BasicBlock,
target: Option<BasicBlock>,
},
}
Expand description
DefLocation
represents the location of a definition - either an argument or an assignment
within MIR body.
Variants§
Auto Trait Implementations§
impl Freeze for DefLocation
impl RefUnwindSafe for DefLocation
impl Send for DefLocation
impl Sync for DefLocation
impl Unpin for DefLocation
impl UnwindSafe for DefLocation
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