Struct cranelift_codegen::MachSrcLoc
source · pub struct MachSrcLoc<T: CompilePhase> {
pub start: CodeOffset,
pub end: CodeOffset,
pub loc: T::SourceLocType,
}
Expand description
A source-location mapping resulting from a compilation.
Fields§
§start: CodeOffset
The start of the region of code corresponding to a source location. This is relative to the start of the function, not to the start of the section.
end: CodeOffset
The end of the region of code corresponding to a source location. This is relative to the start of the section, not to the start of the section.
loc: T::SourceLocType
The source location.
Trait Implementations§
source§impl<T: Clone + CompilePhase> Clone for MachSrcLoc<T>where
T::SourceLocType: Clone,
impl<T: Clone + CompilePhase> Clone for MachSrcLoc<T>where
T::SourceLocType: Clone,
source§fn clone(&self) -> MachSrcLoc<T>
fn clone(&self) -> MachSrcLoc<T>
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 moresource§impl<T: PartialEq + CompilePhase> PartialEq for MachSrcLoc<T>where
T::SourceLocType: PartialEq,
impl<T: PartialEq + CompilePhase> PartialEq for MachSrcLoc<T>where
T::SourceLocType: PartialEq,
impl<T: CompilePhase> StructuralPartialEq for MachSrcLoc<T>
Auto Trait Implementations§
impl<T> Freeze for MachSrcLoc<T>where
<T as CompilePhase>::SourceLocType: Freeze,
impl<T> RefUnwindSafe for MachSrcLoc<T>where
<T as CompilePhase>::SourceLocType: RefUnwindSafe,
impl<T> Send for MachSrcLoc<T>where
<T as CompilePhase>::SourceLocType: Send,
impl<T> Sync for MachSrcLoc<T>where
<T as CompilePhase>::SourceLocType: Sync,
impl<T> Unpin for MachSrcLoc<T>where
<T as CompilePhase>::SourceLocType: Unpin,
impl<T> UnwindSafe for MachSrcLoc<T>where
<T as CompilePhase>::SourceLocType: UnwindSafe,
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
source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
source§default unsafe fn clone_to_uninit(&self, dst: *mut T)
default unsafe fn clone_to_uninit(&self, dst: *mut T)
🔬This is a nightly-only experimental API. (
clone_to_uninit
)