pub struct DebugLineRow {
pub address: u64,
pub line: u32,
pub column: u32,
}Expand description
A single source mapping row for debug line table emission.
Fields§
§address: u64Public API for address.
line: u32Public API for line.
column: u32Public API for column.
Trait Implementations§
Source§impl Clone for DebugLineRow
impl Clone for DebugLineRow
Source§fn clone(&self) -> DebugLineRow
fn clone(&self) -> DebugLineRow
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreimpl Copy for DebugLineRow
Source§impl Debug for DebugLineRow
impl Debug for DebugLineRow
impl Eq for DebugLineRow
Source§impl PartialEq for DebugLineRow
impl PartialEq for DebugLineRow
impl StructuralPartialEq for DebugLineRow
Auto Trait Implementations§
impl Freeze for DebugLineRow
impl RefUnwindSafe for DebugLineRow
impl Send for DebugLineRow
impl Sync for DebugLineRow
impl Unpin for DebugLineRow
impl UnsafeUnpin for DebugLineRow
impl UnwindSafe for DebugLineRow
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