pub struct UnusedBraces;

Implementations§

Trait Implementations§

source§

impl Clone for UnusedBraces

source§

fn clone(&self) -> UnusedBraces

Returns a copy of the value. Read more
1.0.0 · source§

fn clone_from(&mut self, source: &Self)

Performs copy-assignment from source. Read more
source§

impl EarlyLintPass for UnusedBraces

source§

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

source§

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

source§

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

source§

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

source§

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

source§

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

source§

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

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_arm(&mut self, _: &EarlyContext<'_>, _: &Arm)

source§

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

source§

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

source§

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

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_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§

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

source§

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

source§

impl LintPass for UnusedBraces

source§

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

source§

impl UnusedDelimLint for UnusedBraces

source§

const DELIM_STR: &'static str = "braces"

source§

const LINT_EXPR_IN_PATTERN_MATCHING_CTX: bool = false

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)

source§

impl Copy for UnusedBraces

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> ToOwned for T
where T: Clone,

§

type Owned = T

The resulting type after obtaining ownership.
source§

fn to_owned(&self) -> T

Creates owned data from borrowed data, usually by cloning. Read more
source§

fn clone_into(&self, target: &mut T)

Uses borrowed data to replace owned data, usually by cloning. Read more
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: 0 bytes