pub struct UnusedParens {
    with_self_ty_parens: bool,
    parens_in_cast_in_lt: Vec<NodeId>,
}

Fields§

§with_self_ty_parens: bool§parens_in_cast_in_lt: Vec<NodeId>

1 as (i32) < 2 parses to ExprKind::Lt 1 as i32 < 2 parses to i32::<2[missing angle bracket]

Implementations§

source§

impl UnusedParens

source

pub fn new() -> Self

source§

impl UnusedParens

source§

impl UnusedParens

source

fn check_unused_parens_pat( &self, cx: &EarlyContext<'_>, value: &Pat, avoid_or: bool, avoid_mut: bool, keep_space: (bool, bool) )

source

fn cast_followed_by_lt(&self, expr: &Expr) -> Option<NodeId>

Trait Implementations§

source§

impl EarlyLintPass for UnusedParens

source§

fn check_expr(&mut self, cx: &EarlyContext<'_>, e: &Expr)

source§

fn check_expr_post(&mut self, _cx: &EarlyContext<'_>, e: &Expr)

source§

fn check_pat(&mut self, cx: &EarlyContext<'_>, p: &Pat)

source§

fn check_stmt(&mut self, cx: &EarlyContext<'_>, s: &Stmt)

source§

fn check_param(&mut self, cx: &EarlyContext<'_>, param: &Param)

source§

fn check_arm(&mut self, cx: &EarlyContext<'_>, arm: &Arm)

source§

fn check_ty(&mut self, cx: &EarlyContext<'_>, ty: &Ty)

source§

fn check_item(&mut self, cx: &EarlyContext<'_>, item: &Item)

source§

fn enter_where_predicate(&mut self, _: &EarlyContext<'_>, pred: &WherePredicate)

source§

fn exit_where_predicate(&mut self, _: &EarlyContext<'_>, _: &WherePredicate)

source§

fn check_ident(&mut self, _: &EarlyContext<'_>, _: Ident)

source§

fn check_crate(&mut self, _: &EarlyContext<'_>, _: &Crate)

source§

fn check_crate_post(&mut self, _: &EarlyContext<'_>, _: &Crate)

source§

fn check_item_post(&mut self, _: &EarlyContext<'_>, _: &Item)

source§

fn check_local(&mut self, _: &EarlyContext<'_>, _: &Local)

source§

fn check_block(&mut self, _: &EarlyContext<'_>, _: &Block)

source§

fn check_pat_post(&mut self, _: &EarlyContext<'_>, _: &Pat)

source§

fn check_generic_arg(&mut self, _: &EarlyContext<'_>, _: &GenericArg)

source§

fn check_generic_param(&mut self, _: &EarlyContext<'_>, _: &GenericParam)

source§

fn check_generics(&mut self, _: &EarlyContext<'_>, _: &Generics)

source§

fn check_poly_trait_ref(&mut self, _: &EarlyContext<'_>, _: &PolyTraitRef)

source§

fn check_fn(&mut self, _: &EarlyContext<'_>, _: FnKind<'_>, _: Span, _: NodeId)

source§

fn check_trait_item(&mut self, _: &EarlyContext<'_>, _: &AssocItem)

source§

fn check_impl_item(&mut self, _: &EarlyContext<'_>, _: &AssocItem)

source§

fn check_variant(&mut self, _: &EarlyContext<'_>, _: &Variant)

source§

fn check_attribute(&mut self, _: &EarlyContext<'_>, _: &Attribute)

source§

fn check_mac_def(&mut self, _: &EarlyContext<'_>, _: &MacroDef)

source§

fn check_mac(&mut self, _: &EarlyContext<'_>, _: &MacCall)

source§

fn enter_lint_attrs(&mut self, _: &EarlyContext<'_>, _: &[Attribute])

source§

fn exit_lint_attrs(&mut self, _: &EarlyContext<'_>, _: &[Attribute])

source§

impl LintPass for UnusedParens

source§

fn name(&self) -> &'static str

source§

impl UnusedDelimLint for UnusedParens

source§

const DELIM_STR: &'static str = "parentheses"

source§

const LINT_EXPR_IN_PATTERN_MATCHING_CTX: bool = true

Due to ref pattern, there can be a difference between using { expr } and expr in pattern-matching contexts. This means that we should only lint unused_parens and not unused_braces in this case. Read more
source§

fn lint(&self) -> &'static Lint

source§

fn check_unused_delims_expr( &self, cx: &EarlyContext<'_>, value: &Expr, ctx: UnusedDelimsCtx, followed_by_block: bool, left_pos: Option<BytePos>, right_pos: Option<BytePos>, is_kw: bool )

source§

fn is_expr_delims_necessary( inner: &Expr, followed_by_block: bool, followed_by_else: bool ) -> bool

source§

fn emit_unused_delims_expr( &self, cx: &EarlyContext<'_>, value: &Expr, ctx: UnusedDelimsCtx, left_pos: Option<BytePos>, right_pos: Option<BytePos>, is_kw: bool )

source§

fn emit_unused_delims( &self, cx: &EarlyContext<'_>, value_span: Span, spans: Option<(Span, Span)>, msg: &str, keep_space: (bool, bool), is_kw: bool )

source§

fn check_expr(&mut self, cx: &EarlyContext<'_>, e: &Expr)

source§

fn check_stmt(&mut self, cx: &EarlyContext<'_>, s: &Stmt)

source§

fn check_item(&mut self, cx: &EarlyContext<'_>, item: &Item)

Auto Trait Implementations§

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, U> TryFrom<U> for T
where U: Into<T>,

§

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>,

§

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.

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: 32 bytes