#[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

Formats the value using the given formatter. Read more

Returns the “default value” for a type. Read more

Auto Trait Implementations

Blanket Implementations

Gets the TypeId of self. Read more

Immutably borrows from an owned value. Read more

Mutably borrows from an owned value. Read more

Returns the argument unchanged.

Calls U::from(self).

That is, this conversion is whatever the implementation of From<T> for U chooses to do.

The type returned in the event of a conversion error.

Performs the conversion.

The type returned in the event of a conversion error.

Performs the conversion.