Struct simics::api::interface::interfaces::DebugSymbolFileInterface
source · pub struct DebugSymbolFileInterface {
obj: *mut ConfObject,
interface: *mut debug_symbol_file_interface,
}
Expand description
Automatically generated structure for the interface
Fields§
§obj: *mut ConfObject
§interface: *mut debug_symbol_file_interface
Implementations§
source§impl DebugSymbolFileInterface
impl DebugSymbolFileInterface
sourcepub fn open_symbol_file(
&mut self,
filename: *const c_char,
address: uint64,
absolute_address: bool,
) -> Result<AttrValue>
pub fn open_symbol_file( &mut self, filename: *const c_char, address: uint64, absolute_address: bool, ) -> Result<AttrValue>
Automatically generated method for the interface
sourcepub fn close_symbol_file(&mut self, ctx_id: *const c_char) -> Result<AttrValue>
pub fn close_symbol_file(&mut self, ctx_id: *const c_char) -> Result<AttrValue>
Automatically generated method for the interface
sourcepub fn symbol_file_info(&mut self, ctx_id: *const c_char) -> Result<AttrValue>
pub fn symbol_file_info(&mut self, ctx_id: *const c_char) -> Result<AttrValue>
Automatically generated method for the interface
sourcepub fn sections_info(&mut self, ctx_id: *const c_char) -> Result<AttrValue>
pub fn sections_info(&mut self, ctx_id: *const c_char) -> Result<AttrValue>
Automatically generated method for the interface
Trait Implementations§
source§impl Interface for DebugSymbolFileInterface
impl Interface for DebugSymbolFileInterface
source§const NAME: &'static [u8] = crate::api::sys::DEBUG_SYMBOL_FILE_INTERFACE
const NAME: &'static [u8] = crate::api::sys::DEBUG_SYMBOL_FILE_INTERFACE
The name of the interface
source§type InternalInterface = debug_symbol_file_interface
type InternalInterface = debug_symbol_file_interface
The inner interface type, which is a struct of nullable extern “C” function pointers
and must be default constructable as all NULL pointers (i.e. None values)
source§type Name = &'static [u8]
type Name = &'static [u8]
The type of the name of the interface, must be convertible to raw C string to pass to
the simulator
source§fn new(obj: *mut ConfObject, interface: *mut Self::InternalInterface) -> Self
fn new(obj: *mut ConfObject, interface: *mut Self::InternalInterface) -> Self
Create a new instance of this interface
Auto Trait Implementations§
impl Freeze for DebugSymbolFileInterface
impl RefUnwindSafe for DebugSymbolFileInterface
impl !Send for DebugSymbolFileInterface
impl !Sync for DebugSymbolFileInterface
impl Unpin for DebugSymbolFileInterface
impl UnwindSafe for DebugSymbolFileInterface
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