Struct simics::api::interface::interfaces::BreakpointManagerInterface
source · pub struct BreakpointManagerInterface {
obj: *mut ConfObject,
interface: *mut breakpoint_manager_interface,
}
Expand description
Automatically generated structure for the interface
Fields§
§obj: *mut ConfObject
§interface: *mut breakpoint_manager_interface
Implementations§
source§impl BreakpointManagerInterface
impl BreakpointManagerInterface
sourcepub fn list_breakpoints(&mut self) -> Result<AttrValue>
pub fn list_breakpoints(&mut self) -> Result<AttrValue>
Automatically generated method for the interface
sourcepub fn delete_breakpoint(&mut self, id: uint64) -> Result<()>
pub fn delete_breakpoint(&mut self, id: uint64) -> Result<()>
Automatically generated method for the interface
sourcepub fn get_properties(&mut self, id: uint64) -> Result<AttrValue>
pub fn get_properties(&mut self, id: uint64) -> Result<AttrValue>
Automatically generated method for the interface
sourcepub fn set_enabled(&mut self, id: uint64, enabled: bool) -> Result<bool>
pub fn set_enabled(&mut self, id: uint64, enabled: bool) -> Result<bool>
Automatically generated method for the interface
sourcepub fn set_temporary(&mut self, id: uint64, temporary: bool) -> Result<bool>
pub fn set_temporary(&mut self, id: uint64, temporary: bool) -> Result<bool>
Automatically generated method for the interface
sourcepub fn set_ignore_count(
&mut self,
id: uint64,
ignore_count: uint64,
) -> Result<bool>
pub fn set_ignore_count( &mut self, id: uint64, ignore_count: uint64, ) -> Result<bool>
Automatically generated method for the interface
Trait Implementations§
source§impl Interface for BreakpointManagerInterface
impl Interface for BreakpointManagerInterface
source§const NAME: &'static [u8] = crate::api::sys::BREAKPOINT_MANAGER_INTERFACE
const NAME: &'static [u8] = crate::api::sys::BREAKPOINT_MANAGER_INTERFACE
The name of the interface
source§type InternalInterface = breakpoint_manager_interface
type InternalInterface = breakpoint_manager_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 BreakpointManagerInterface
impl RefUnwindSafe for BreakpointManagerInterface
impl !Send for BreakpointManagerInterface
impl !Sync for BreakpointManagerInterface
impl Unpin for BreakpointManagerInterface
impl UnwindSafe for BreakpointManagerInterface
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