pub struct Expr<'hir> {
pub hir_id: HirId,
pub kind: ExprKind<'hir>,
pub span: Span,
}
Expand description
An expression.
For more details, see the rust lang reference. Note that the reference does not document nightly-only features. There may be also slight differences in the names and representation of AST nodes between the compiler and the reference.
Fields§
§hir_id: HirId
§kind: ExprKind<'hir>
§span: Span
Implementations§
Source§impl Expr<'_>
impl Expr<'_>
pub fn precedence(&self) -> ExprPrecedence
Sourcepub fn is_syntactic_place_expr(&self) -> bool
pub fn is_syntactic_place_expr(&self) -> bool
Whether this looks like a place expr, without checking for deref
adjustments.
This will return true
in some potentially surprising cases such as
CONSTANT.field
.
Sourcepub fn is_place_expr(
&self,
allow_projections_from: impl FnMut(&Self) -> bool,
) -> bool
pub fn is_place_expr( &self, allow_projections_from: impl FnMut(&Self) -> bool, ) -> bool
Whether this is a place expression.
allow_projections_from
should return true
if indexing a field or index expression based
on the given expression should be considered a place expression.
Sourcepub fn peel_drop_temps(&self) -> &Self
pub fn peel_drop_temps(&self) -> &Self
If Self.kind
is ExprKind::DropTemps(expr)
, drill down until we get a non-DropTemps
Expr
. This is used in suggestions to ignore this ExprKind
as it is semantically
silent, only signaling the ownership system. By doing this, suggestions that check the
ExprKind
of any given Expr
for presentation don’t have to care about DropTemps
beyond remembering to call this function before doing analysis on it.
pub fn peel_blocks(&self) -> &Self
pub fn peel_borrows(&self) -> &Self
pub fn can_have_side_effects(&self) -> bool
Sourcepub fn is_approximately_pattern(&self) -> bool
pub fn is_approximately_pattern(&self) -> bool
To a first-order approximation, is this a pattern?
Sourcepub fn equivalent_for_indexing(&self, other: &Expr<'_>) -> bool
pub fn equivalent_for_indexing(&self, other: &Expr<'_>) -> bool
Whether this and the other
expression are the same for purposes of an indexing operation.
This is only used for diagnostics to see if we have things like foo[i]
where foo
is
borrowed multiple times with i
.
pub fn method_ident(&self) -> Option<Ident>
Trait Implementations§
Source§impl<'hir, __CTX> HashStable<__CTX> for Expr<'hir>where
__CTX: HashStableContext,
impl<'hir, __CTX> HashStable<__CTX> for Expr<'hir>where
__CTX: HashStableContext,
fn hash_stable(&self, __hcx: &mut __CTX, __hasher: &mut StableHasher)
impl<'hir> Copy for Expr<'hir>
Auto Trait Implementations§
impl<'hir> DynSend for Expr<'hir>
impl<'hir> DynSync for Expr<'hir>
impl<'hir> Freeze for Expr<'hir>
impl<'hir> RefUnwindSafe for Expr<'hir>
impl<'hir> Send for Expr<'hir>
impl<'hir> Sync for Expr<'hir>
impl<'hir> Unpin for Expr<'hir>
impl<'hir> UnwindSafe for Expr<'hir>
Blanket Implementations§
Source§impl<'tcx, T> ArenaAllocatable<'tcx, IsCopy> for Twhere
T: Copy,
impl<'tcx, T> ArenaAllocatable<'tcx, IsCopy> for Twhere
T: Copy,
fn allocate_on(self, arena: &'tcx Arena<'tcx>) -> &'tcx mut T
fn allocate_from_iter( arena: &'tcx Arena<'tcx>, iter: impl IntoIterator<Item = T>, ) -> &'tcx mut [T]
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
Source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
Source§impl<T> Instrument for T
impl<T> Instrument for T
Source§fn instrument(self, span: Span) -> Instrumented<Self>
fn instrument(self, span: Span) -> Instrumented<Self>
Source§fn in_current_span(self) -> Instrumented<Self>
fn in_current_span(self) -> Instrumented<Self>
Source§impl<T> IntoEither for T
impl<T> IntoEither for T
Source§fn into_either(self, into_left: bool) -> Either<Self, Self>
fn into_either(self, into_left: bool) -> Either<Self, Self>
self
into a Left
variant of Either<Self, Self>
if into_left
is true
.
Converts self
into a Right
variant of Either<Self, Self>
otherwise. Read moreSource§fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
self
into a Left
variant of Either<Self, Self>
if into_left(&self)
returns true
.
Converts self
into a Right
variant of Either<Self, Self>
otherwise. Read moreSource§impl<T> Pointable for T
impl<T> Pointable for T
Source§impl<T> WithSubscriber for T
impl<T> WithSubscriber for T
Source§fn with_subscriber<S>(self, subscriber: S) -> WithDispatch<Self>
fn with_subscriber<S>(self, subscriber: S) -> WithDispatch<Self>
Source§fn with_current_subscriber(self) -> WithDispatch<Self>
fn with_current_subscriber(self) -> WithDispatch<Self>
impl<'a, T> Captures<'a> for Twhere
T: ?Sized,
Layout§
Note: Most layout information is completely unstable and may even differ between compilations. The only exception is types with certain repr(...)
attributes. Please see the Rust Reference's “Type Layout” chapter for details on type layout guarantees.
Size: 64 bytes