Struct simics::api::interface::interfaces::FrontendServerInterface
source · pub struct FrontendServerInterface {
obj: *mut ConfObject,
interface: *mut frontend_server_interface,
}
Expand description
Automatically generated structure for the interface
Fields§
§obj: *mut ConfObject
§interface: *mut frontend_server_interface
Implementations§
source§impl FrontendServerInterface
impl FrontendServerInterface
sourcepub fn init_control_pipes(&mut self, s: *const c_char) -> Result<()>
pub fn init_control_pipes(&mut self, s: *const c_char) -> Result<()>
Automatically generated method for the interface
sourcepub fn have_mi_frontend(&mut self) -> Result<c_int>
pub fn have_mi_frontend(&mut self) -> Result<c_int>
Automatically generated method for the interface
sourcepub fn notify_break_on_breakpoint(&mut self, break_id: int64) -> Result<()>
pub fn notify_break_on_breakpoint(&mut self, break_id: int64) -> Result<()>
Automatically generated method for the interface
Trait Implementations§
source§impl Interface for FrontendServerInterface
impl Interface for FrontendServerInterface
source§const NAME: &'static [u8] = crate::api::sys::FRONTEND_SERVER_INTERFACE
const NAME: &'static [u8] = crate::api::sys::FRONTEND_SERVER_INTERFACE
The name of the interface
source§type InternalInterface = frontend_server_interface
type InternalInterface = frontend_server_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 FrontendServerInterface
impl RefUnwindSafe for FrontendServerInterface
impl !Send for FrontendServerInterface
impl !Sync for FrontendServerInterface
impl Unpin for FrontendServerInterface
impl UnwindSafe for FrontendServerInterface
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