Struct rustc_codegen_ssa::mir::debuginfo::PerLocalVarDebugInfo
source · pub struct PerLocalVarDebugInfo<'tcx, D> {
pub name: Symbol,
pub source_info: SourceInfo,
pub dbg_var: Option<D>,
pub fragment: Option<Range<Size>>,
pub projection: &'tcx List<PlaceElem<'tcx>>,
}
Expand description
Like mir::VarDebugInfo
, but within a mir::Local
.
Fields§
§name: Symbol
§source_info: SourceInfo
§dbg_var: Option<D>
DIVariable
returned by create_dbg_var
.
fragment: Option<Range<Size>>
Byte range in the dbg_var
covered by this fragment,
if this is a fragment of a composite VarDebugInfo
.
projection: &'tcx List<PlaceElem<'tcx>>
.place.projection
from mir::VarDebugInfo
.
Trait Implementations§
source§impl<'tcx, D: Clone> Clone for PerLocalVarDebugInfo<'tcx, D>
impl<'tcx, D: Clone> Clone for PerLocalVarDebugInfo<'tcx, D>
source§fn clone(&self) -> PerLocalVarDebugInfo<'tcx, D>
fn clone(&self) -> PerLocalVarDebugInfo<'tcx, D>
Returns a copy of the value. Read more
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source
. Read moreAuto Trait Implementations§
impl<'tcx, D> !RefUnwindSafe for PerLocalVarDebugInfo<'tcx, D>
impl<'tcx, D> !Send for PerLocalVarDebugInfo<'tcx, D>
impl<'tcx, D> !Sync for PerLocalVarDebugInfo<'tcx, D>
impl<'tcx, D> Unpin for PerLocalVarDebugInfo<'tcx, D>where D: Unpin,
impl<'tcx, D> !UnwindSafe for PerLocalVarDebugInfo<'tcx, D>
Blanket Implementations§
source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere T: ?Sized,
source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more
Layout§
Note: Unable to compute type layout, possibly due to this type having generic parameters. Layout can only be computed for concrete, fully-instantiated types.