pub(crate) struct BuiltinCombinedModuleLateLintPass {Show 32 fields
pub(crate) HardwiredLints: HardwiredLints,
pub(crate) ImproperCTypesDeclarations: ImproperCTypesDeclarations,
pub(crate) ImproperCTypesDefinitions: ImproperCTypesDefinitions,
pub(crate) VariantSizeDifferences: VariantSizeDifferences,
pub(crate) BoxPointers: BoxPointers,
pub(crate) PathStatements: PathStatements,
pub(crate) LetUnderscore: LetUnderscore,
pub(crate) UnusedResults: UnusedResults,
pub(crate) NonUpperCaseGlobals: NonUpperCaseGlobals,
pub(crate) NonShorthandFieldPatterns: NonShorthandFieldPatterns,
pub(crate) UnusedAllocation: UnusedAllocation,
pub(crate) MissingCopyImplementations: MissingCopyImplementations,
pub(crate) MutableTransmutes: MutableTransmutes,
pub(crate) TypeAliasBounds: TypeAliasBounds,
pub(crate) TrivialConstraints: TrivialConstraints,
pub(crate) TypeLimits: TypeLimits,
pub(crate) NonSnakeCase: NonSnakeCase,
pub(crate) InvalidNoMangleItems: InvalidNoMangleItems,
pub(crate) UnreachablePub: UnreachablePub,
pub(crate) ExplicitOutlivesRequirements: ExplicitOutlivesRequirements,
pub(crate) InvalidValue: InvalidValue,
pub(crate) DerefNullPtr: DerefNullPtr,
pub(crate) UnusedBrokenConst: UnusedBrokenConst,
pub(crate) UnstableFeatures: UnstableFeatures,
pub(crate) ArrayIntoIter: ArrayIntoIter,
pub(crate) DropTraitConstraints: DropTraitConstraints,
pub(crate) TemporaryCStringAsPtr: TemporaryCStringAsPtr,
pub(crate) NonPanicFmt: NonPanicFmt,
pub(crate) NoopMethodCall: NoopMethodCall,
pub(crate) EnumIntrinsicsNonEnums: EnumIntrinsicsNonEnums,
pub(crate) InvalidAtomicOrdering: InvalidAtomicOrdering,
pub(crate) NamedAsmLabels: NamedAsmLabels,
}
Fields
HardwiredLints: HardwiredLints
ImproperCTypesDeclarations: ImproperCTypesDeclarations
ImproperCTypesDefinitions: ImproperCTypesDefinitions
VariantSizeDifferences: VariantSizeDifferences
BoxPointers: BoxPointers
PathStatements: PathStatements
LetUnderscore: LetUnderscore
UnusedResults: UnusedResults
NonUpperCaseGlobals: NonUpperCaseGlobals
NonShorthandFieldPatterns: NonShorthandFieldPatterns
UnusedAllocation: UnusedAllocation
MissingCopyImplementations: MissingCopyImplementations
MutableTransmutes: MutableTransmutes
TypeAliasBounds: TypeAliasBounds
TrivialConstraints: TrivialConstraints
TypeLimits: TypeLimits
NonSnakeCase: NonSnakeCase
InvalidNoMangleItems: InvalidNoMangleItems
UnreachablePub: UnreachablePub
ExplicitOutlivesRequirements: ExplicitOutlivesRequirements
InvalidValue: InvalidValue
DerefNullPtr: DerefNullPtr
UnusedBrokenConst: UnusedBrokenConst
UnstableFeatures: UnstableFeatures
ArrayIntoIter: ArrayIntoIter
DropTraitConstraints: DropTraitConstraints
TemporaryCStringAsPtr: TemporaryCStringAsPtr
NonPanicFmt: NonPanicFmt
NoopMethodCall: NoopMethodCall
EnumIntrinsicsNonEnums: EnumIntrinsicsNonEnums
InvalidAtomicOrdering: InvalidAtomicOrdering
NamedAsmLabels: NamedAsmLabels
Implementations
Trait Implementations
sourceimpl<'tcx> LateLintPass<'tcx> for BuiltinCombinedModuleLateLintPass
impl<'tcx> LateLintPass<'tcx> for BuiltinCombinedModuleLateLintPass
fn check_body(&mut self, context: &LateContext<'tcx>, a: &'tcx Body<'tcx>)
fn check_body_post(&mut self, context: &LateContext<'tcx>, a: &'tcx Body<'tcx>)
fn check_crate(&mut self, context: &LateContext<'tcx>)
fn check_crate_post(&mut self, context: &LateContext<'tcx>)
fn check_mod(&mut self, context: &LateContext<'tcx>, a: &'tcx Mod<'tcx>, b: HirId)
fn check_foreign_item(
&mut self,
context: &LateContext<'tcx>,
a: &'tcx ForeignItem<'tcx>
)
fn check_item(&mut self, context: &LateContext<'tcx>, a: &'tcx Item<'tcx>)
fn check_item_post(&mut self, context: &LateContext<'tcx>, a: &'tcx Item<'tcx>)
fn check_local(&mut self, context: &LateContext<'tcx>, a: &'tcx Local<'tcx>)
fn check_block(&mut self, context: &LateContext<'tcx>, a: &'tcx Block<'tcx>)
fn check_block_post(&mut self, context: &LateContext<'tcx>, a: &'tcx Block<'tcx>)
fn check_stmt(&mut self, context: &LateContext<'tcx>, a: &'tcx Stmt<'tcx>)
fn check_arm(&mut self, context: &LateContext<'tcx>, a: &'tcx Arm<'tcx>)
fn check_pat(&mut self, context: &LateContext<'tcx>, a: &'tcx Pat<'tcx>)
fn check_expr(&mut self, context: &LateContext<'tcx>, a: &'tcx Expr<'tcx>)
fn check_expr_post(&mut self, context: &LateContext<'tcx>, a: &'tcx Expr<'tcx>)
fn check_ty(&mut self, context: &LateContext<'tcx>, a: &'tcx Ty<'tcx>)
fn check_generic_param(
&mut self,
context: &LateContext<'tcx>,
a: &'tcx GenericParam<'tcx>
)
fn check_generics(&mut self, context: &LateContext<'tcx>, a: &'tcx Generics<'tcx>)
fn check_poly_trait_ref(
&mut self,
context: &LateContext<'tcx>,
a: &'tcx PolyTraitRef<'tcx>
)
fn check_fn(
&mut self,
context: &LateContext<'tcx>,
a: FnKind<'tcx>,
b: &'tcx FnDecl<'tcx>,
c: &'tcx Body<'tcx>,
d: Span,
e: HirId
)
fn check_trait_item(
&mut self,
context: &LateContext<'tcx>,
a: &'tcx TraitItem<'tcx>
)
fn check_impl_item(
&mut self,
context: &LateContext<'tcx>,
a: &'tcx ImplItem<'tcx>
)
fn check_impl_item_post(
&mut self,
context: &LateContext<'tcx>,
a: &'tcx ImplItem<'tcx>
)
fn check_struct_def(
&mut self,
context: &LateContext<'tcx>,
a: &'tcx VariantData<'tcx>
)
fn check_field_def(
&mut self,
context: &LateContext<'tcx>,
a: &'tcx FieldDef<'tcx>
)
fn check_variant(&mut self, context: &LateContext<'tcx>, a: &'tcx Variant<'tcx>)
fn check_path(
&mut self,
context: &LateContext<'tcx>,
a: &'tcx Path<'tcx>,
b: HirId
)
fn check_attribute(&mut self, context: &LateContext<'tcx>, a: &'tcx Attribute)
fn enter_lint_attrs(&mut self, context: &LateContext<'tcx>, a: &'tcx [Attribute])
fn exit_lint_attrs(&mut self, context: &LateContext<'tcx>, a: &'tcx [Attribute])
Auto Trait Implementations
impl RefUnwindSafe for BuiltinCombinedModuleLateLintPass
impl !Send for BuiltinCombinedModuleLateLintPass
impl !Sync for BuiltinCombinedModuleLateLintPass
impl Unpin for BuiltinCombinedModuleLateLintPass
impl UnwindSafe for BuiltinCombinedModuleLateLintPass
Blanket Implementations
sourceimpl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
const: unstable · sourcefn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more
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: 16 bytes