Struct simics::api::interface::interfaces::StepEventInstrumentationInterface
source · pub struct StepEventInstrumentationInterface {
obj: *mut ConfObject,
interface: *mut step_event_instrumentation_interface,
}
Expand description
Automatically generated structure for the interface
Fields§
§obj: *mut ConfObject
§interface: *mut step_event_instrumentation_interface
Implementations§
source§impl StepEventInstrumentationInterface
impl StepEventInstrumentationInterface
sourcepub fn register_step_event_cb(
&mut self,
connection: *mut conf_object_t,
cb: step_event_cb_t,
data: *mut lang_void,
) -> Result<*mut step_handle_t>
pub fn register_step_event_cb( &mut self, connection: *mut conf_object_t, cb: step_event_cb_t, data: *mut lang_void, ) -> Result<*mut step_handle_t>
Automatically generated method for the interface
sourcepub fn remove_step_event_cb(&mut self, handle: *mut step_handle_t) -> Result<()>
pub fn remove_step_event_cb(&mut self, handle: *mut step_handle_t) -> Result<()>
Automatically generated method for the interface
Trait Implementations§
source§impl Interface for StepEventInstrumentationInterface
impl Interface for StepEventInstrumentationInterface
source§const NAME: &'static [u8] = crate::api::sys::STEP_EVENT_INSTRUMENTATION_INTERFACE
const NAME: &'static [u8] = crate::api::sys::STEP_EVENT_INSTRUMENTATION_INTERFACE
The name of the interface
source§type InternalInterface = step_event_instrumentation_interface
type InternalInterface = step_event_instrumentation_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 StepEventInstrumentationInterface
impl RefUnwindSafe for StepEventInstrumentationInterface
impl !Send for StepEventInstrumentationInterface
impl !Sync for StepEventInstrumentationInterface
impl Unpin for StepEventInstrumentationInterface
impl UnwindSafe for StepEventInstrumentationInterface
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