TyContext in rustc_middle::mir::visit - Rust (original) (raw)
pub enum TyContext {
LocalDecl {
local: Local,
source_info: SourceInfo,
},
UserTy(Span),
ReturnTy(SourceInfo),
YieldTy(SourceInfo),
ResumeTy(SourceInfo),
Location(Location),
}
Expand description
Extra information passed to visit_ty
and friends to give context about where the type etc appears.
Fields
The index of the local variable we are visiting.
The source location where this local variable was declared.
The inferred type of a user type annotation.
The return type of the function.
A type found at some location.
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: 24 bytes
Size for each variant:
LocalDecl
: 16 bytesUserTy
: 8 bytesReturnTy
: 12 bytesYieldTy
: 12 bytesResumeTy
: 12 bytesLocation
: 20 bytes