pub struct InputDwarfLine {
pub rows: Vec<LineRow>,
pub code_base: u32,
}Expand description
Result of reading the input wasm’s DWARF line table: the parsed rows plus the
code-section payload start (code_base) the op-offset compose subtracts.
Fields§
§rows: Vec<LineRow>Code-section-relative .debug_line rows (addr is a wasm code byte
offset; for the synth bridge that equals the DWARF address space).
code_base: u32Module-relative byte offset of the code section payload start. Empty wasm or a wasm with no code section reports 0.
Trait Implementations§
Source§impl Clone for InputDwarfLine
impl Clone for InputDwarfLine
Source§fn clone(&self) -> InputDwarfLine
fn clone(&self) -> InputDwarfLine
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 moreSource§impl Debug for InputDwarfLine
impl Debug for InputDwarfLine
Source§impl Default for InputDwarfLine
impl Default for InputDwarfLine
Source§fn default() -> InputDwarfLine
fn default() -> InputDwarfLine
Returns the “default value” for a type. Read more
Auto Trait Implementations§
impl Freeze for InputDwarfLine
impl RefUnwindSafe for InputDwarfLine
impl Send for InputDwarfLine
impl Sync for InputDwarfLine
impl Unpin for InputDwarfLine
impl UnsafeUnpin for InputDwarfLine
impl UnwindSafe for InputDwarfLine
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