#[repr(C)]pub struct blaze_symbolize_src_gsym_file {
pub type_size: usize,
pub path: *const c_char,
pub reserved: [u8; 16],
}Expand description
The parameters to load symbols and debug information from a Gsym file.
Fields§
§type_size: usizeThe size of this object’s type.
Make sure to initialize it to sizeof(<type>). This member is used to
ensure compatibility in the presence of member additions.
path: *const c_charThe path to a gsym file.
reserved: [u8; 16]Unused member available for future expansion. Must be initialized to zero.
Trait Implementations§
Source§impl From<blaze_symbolize_src_gsym_file> for GsymFile
impl From<blaze_symbolize_src_gsym_file> for GsymFile
Source§fn from(gsym: blaze_symbolize_src_gsym_file) -> Self
fn from(gsym: blaze_symbolize_src_gsym_file) -> Self
Converts to this type from the input type.
Auto Trait Implementations§
impl Freeze for blaze_symbolize_src_gsym_file
impl RefUnwindSafe for blaze_symbolize_src_gsym_file
impl !Send for blaze_symbolize_src_gsym_file
impl !Sync for blaze_symbolize_src_gsym_file
impl Unpin for blaze_symbolize_src_gsym_file
impl UnwindSafe for blaze_symbolize_src_gsym_file
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