pub enum MirLocalRepr {
Value,
SharedPlace,
MutablePlace,
}Expand description
Runtime/storage representation tracked for one MIR local.
Variants§
Value
Local stores a direct runtime value.
Local stores a read-only place/reference.
MutablePlace
Local stores a mutable place/reference.
Implementations§
Source§impl MirLocalRepr
impl MirLocalRepr
Trait Implementations§
Source§impl Clone for MirLocalRepr
impl Clone for MirLocalRepr
Source§fn clone(&self) -> MirLocalRepr
fn clone(&self) -> MirLocalRepr
Returns a copy 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 MirLocalRepr
impl Debug for MirLocalRepr
Source§impl PartialEq for MirLocalRepr
impl PartialEq for MirLocalRepr
impl Copy for MirLocalRepr
impl Eq for MirLocalRepr
impl StructuralPartialEq for MirLocalRepr
Auto Trait Implementations§
impl Freeze for MirLocalRepr
impl RefUnwindSafe for MirLocalRepr
impl Send for MirLocalRepr
impl Sync for MirLocalRepr
impl Unpin for MirLocalRepr
impl UnwindSafe for MirLocalRepr
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