Struct rustc_middle::mir::PlaceRef [−][src]
Fields
local: Local
projection: &'tcx [PlaceElem<'tcx>]
Implementations
impl<'tcx> PlaceRef<'tcx>
[src]
pub fn ty<D>(&self, local_decls: &D, tcx: TyCtxt<'tcx>) -> PlaceTy<'tcx> where
D: HasLocalDecls<'tcx>,
[src]
D: HasLocalDecls<'tcx>,
impl<'tcx> PlaceRef<'tcx>
[src]
pub fn local_or_deref_local(&self) -> Option<Local>
[src]
Finds the innermost Local
from this Place
, if it is either a local itself or
a single deref of a local.
pub fn as_local(&self) -> Option<Local>
[src]
If this place represents a local variable like _X
with no
projections, return Some(_X)
.
pub fn last_projection(&self) -> Option<(PlaceRef<'tcx>, PlaceElem<'tcx>)>
[src]
Trait Implementations
impl<'tcx> Clone for PlaceRef<'tcx>
[src]
impl<'tcx> Copy for PlaceRef<'tcx>
[src]
impl<'tcx> Debug for PlaceRef<'tcx>
[src]
impl<'tcx> Eq for PlaceRef<'tcx>
[src]
impl<'tcx> Hash for PlaceRef<'tcx>
[src]
fn hash<__H: Hasher>(&self, state: &mut __H)
[src]
pub fn hash_slice<H>(data: &[Self], state: &mut H) where
H: Hasher,
1.3.0[src]
H: Hasher,
impl<'tcx> Ord for PlaceRef<'tcx>
[src]
fn cmp(&self, other: &PlaceRef<'tcx>) -> Ordering
[src]
#[must_use]pub fn max(self, other: Self) -> Self
1.21.0[src]
#[must_use]pub fn min(self, other: Self) -> Self
1.21.0[src]
#[must_use]pub fn clamp(self, min: Self, max: Self) -> Self
1.50.0[src]
impl<'tcx> PartialEq<PlaceRef<'tcx>> for PlaceRef<'tcx>
[src]
impl<'tcx> PartialOrd<PlaceRef<'tcx>> for PlaceRef<'tcx>
[src]
fn partial_cmp(&self, other: &PlaceRef<'tcx>) -> Option<Ordering>
[src]
#[must_use]pub fn lt(&self, other: &Rhs) -> bool
1.0.0[src]
#[must_use]pub fn le(&self, other: &Rhs) -> bool
1.0.0[src]
#[must_use]pub fn gt(&self, other: &Rhs) -> bool
1.0.0[src]
#[must_use]pub fn ge(&self, other: &Rhs) -> bool
1.0.0[src]
impl<'tcx> StructuralEq for PlaceRef<'tcx>
[src]
impl<'tcx> StructuralPartialEq for PlaceRef<'tcx>
[src]
Auto Trait Implementations
impl<'tcx> !RefUnwindSafe for PlaceRef<'tcx>
impl<'tcx> !Send for PlaceRef<'tcx>
impl<'tcx> !Sync for PlaceRef<'tcx>
impl<'tcx> Unpin for PlaceRef<'tcx>
impl<'tcx> !UnwindSafe for PlaceRef<'tcx>
Blanket Implementations
impl<T> Any for T where
T: 'static + ?Sized,
[src]
T: 'static + ?Sized,
impl<'tcx, T> ArenaAllocatable<'tcx, ()> for T where
T: Copy,
[src]
T: Copy,
pub fn allocate_on(Self, &'a Arena<'tcx>) -> &'a mut T
[src]
pub fn allocate_from_iter(
&'a Arena<'tcx>,
impl IntoIterator<Item = T>
) -> &'a mut [T]ⓘ
[src]
&'a Arena<'tcx>,
impl IntoIterator<Item = T>
) -> &'a mut [T]ⓘ
impl<T> Borrow<T> for T where
T: ?Sized,
[src]
T: ?Sized,
impl<T> BorrowMut<T> for T where
T: ?Sized,
[src]
T: ?Sized,
pub fn borrow_mut(&mut self) -> &mut T
[src]
impl<'a, T> Captures<'a> for T where
T: ?Sized,
[src]
T: ?Sized,
impl<T> From<T> for T
[src]
impl<T, U> Into<U> for T where
U: From<T>,
[src]
U: From<T>,
impl<T> MaybeResult<T> for T
[src]
type Error = !
pub fn from(Result<T, <T as MaybeResult<T>>::Error>) -> T
[src]
pub fn to_result(self) -> Result<T, <T as MaybeResult<T>>::Error>
[src]
impl<T> ToOwned for T where
T: Clone,
[src]
T: Clone,
type Owned = T
The resulting type after obtaining ownership.
pub fn to_owned(&self) -> T
[src]
pub fn clone_into(&self, target: &mut T)
[src]
impl<T, U> TryFrom<U> for T where
U: Into<T>,
[src]
U: Into<T>,
type Error = Infallible
The type returned in the event of a conversion error.
pub fn try_from(value: U) -> Result<T, <T as TryFrom<U>>::Error>
[src]
impl<T, U> TryInto<U> for T where
U: TryFrom<T>,
[src]
U: TryFrom<T>,
type Error = <U as TryFrom<T>>::Error
The type returned in the event of a conversion error.