Struct wasmtime_jit_debug::perf_jitdump::DebugEntry
source · #[repr(C)]pub struct DebugEntry {
pub address: u64,
pub line: u32,
pub discriminator: u32,
pub filename: String,
}
Expand description
Describes source line information for a jitted function
Fields§
§address: u64
uint64_t code_addr
: address of function for which the debug information is generated
line: u32
uint32_t line
: source file line number (starting at 1)
discriminator: u32
uint32_t discrim
: column discriminator, 0 is default
filename: String
char name[n]
: source file name in ASCII, including null termination
Trait Implementations§
source§impl Debug for DebugEntry
impl Debug for DebugEntry
source§impl Default for DebugEntry
impl Default for DebugEntry
source§fn default() -> DebugEntry
fn default() -> DebugEntry
Returns the “default value” for a type. Read more
Auto Trait Implementations§
impl RefUnwindSafe for DebugEntry
impl Send for DebugEntry
impl Sync for DebugEntry
impl Unpin for DebugEntry
impl UnwindSafe for DebugEntry
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