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