#[repr(C)]pub struct blaze_symbolize_code_info {
pub dir: *const c_char,
pub file: *const c_char,
pub line: u32,
pub column: u16,
pub reserved: [u8; 10],
}Expand description
Source code location information for a symbol or inlined function.
Fields§
§dir: *const c_charThe directory in which the source file resides.
This attribute is optional and may be NULL.
file: *const c_charThe file that defines the symbol.
This attribute is optional and may be NULL.
line: u32The line number on which the symbol is located in the source code.
column: u16The column number of the symbolized instruction in the source code.
reserved: [u8; 10]Unused member available for future expansion.
Trait Implementations§
Auto Trait Implementations§
impl Freeze for blaze_symbolize_code_info
impl RefUnwindSafe for blaze_symbolize_code_info
impl !Send for blaze_symbolize_code_info
impl !Sync for blaze_symbolize_code_info
impl Unpin for blaze_symbolize_code_info
impl UnwindSafe for blaze_symbolize_code_info
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