Struct SpanlessEq

Source
pub struct SpanlessEq<'a, 'tcx> { /* private fields */ }
Expand description

Type used to check whether two ast are the same. This is different from the operator == on ast types as this operator would compare true equality with ID and span.

Note that some expressions kinds are not considered but could be added.

Implementations§

Source§

impl<'a, 'tcx> SpanlessEq<'a, 'tcx>

Source

pub fn new(cx: &'a LateContext<'tcx>) -> Self

Source

pub fn deny_side_effects(self) -> Self

Consider expressions containing potential side effects as not equal.

Source

pub fn paths_by_resolution(self) -> Self

Check paths by their resolution instead of exact equality. See [PathCheck] for more details.

Source

pub fn expr_fallback( self, expr_fallback: impl FnMut(&Expr<'_>, &Expr<'_>) -> bool + 'a, ) -> Self

Source

pub fn inter_expr(&mut self) -> HirEqInterExpr<'_, 'a, 'tcx>

Use this method to wrap comparisons that may involve inter-expression context. See self.locals.

Source

pub fn eq_block(&mut self, left: &Block<'_>, right: &Block<'_>) -> bool

Source

pub fn eq_expr(&mut self, left: &Expr<'_>, right: &Expr<'_>) -> bool

Source

pub fn eq_path(&mut self, left: &Path<'_>, right: &Path<'_>) -> bool

Source

pub fn eq_path_segment( &mut self, left: &PathSegment<'_>, right: &PathSegment<'_>, ) -> bool

Source

pub fn eq_path_segments( &mut self, left: &[PathSegment<'_>], right: &[PathSegment<'_>], ) -> bool

Source

pub fn eq_modifiers( left: TraitBoundModifiers, right: TraitBoundModifiers, ) -> bool

Auto Trait Implementations§

§

impl<'a, 'tcx> Freeze for SpanlessEq<'a, 'tcx>

§

impl<'a, 'tcx> !RefUnwindSafe for SpanlessEq<'a, 'tcx>

§

impl<'a, 'tcx> !Send for SpanlessEq<'a, 'tcx>

§

impl<'a, 'tcx> !Sync for SpanlessEq<'a, 'tcx>

§

impl<'a, 'tcx> Unpin for SpanlessEq<'a, 'tcx>

§

impl<'a, 'tcx> !UnwindSafe for SpanlessEq<'a, 'tcx>

Blanket Implementations§

Source§

impl<T> Any for T
where T: 'static + ?Sized,

Source§

fn type_id(&self) -> TypeId

Gets the TypeId of self. Read more
Source§

impl<T> Borrow<T> for T
where T: ?Sized,

Source§

fn borrow(&self) -> &T

Immutably borrows from an owned value. Read more
Source§

impl<T> BorrowMut<T> for T
where T: ?Sized,

Source§

fn borrow_mut(&mut self) -> &mut T

Mutably borrows from an owned value. Read more
Source§

impl<T> From<T> for T

Source§

fn from(t: T) -> T

Returns the argument unchanged.

Source§

impl<T, U> Into<U> for T
where U: From<T>,

Source§

fn into(self) -> U

Calls U::from(self).

That is, this conversion is whatever the implementation of From<T> for U chooses to do.

Source§

impl<T> IntoEither for T

Source§

fn into_either(self, into_left: bool) -> Either<Self, Self>

Converts 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 more
Source§

fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
where F: FnOnce(&Self) -> bool,

Converts 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 more
Source§

impl<T, U> TryFrom<U> for T
where U: Into<T>,

Source§

type Error = Infallible

The type returned in the event of a conversion error.
Source§

fn try_from(value: U) -> Result<T, <T as TryFrom<U>>::Error>

Performs the conversion.
Source§

impl<T, U> TryInto<U> for T
where U: TryFrom<T>,

Source§

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.
Source§

fn try_into(self) -> Result<U, <U as TryFrom<T>>::Error>

Performs the conversion.