Struct simics::api::interface::interfaces::DebugQueryInterface
source · pub struct DebugQueryInterface {
obj: *mut ConfObject,
interface: *mut debug_query_interface,
}
Expand description
Automatically generated structure for the interface
Fields§
§obj: *mut ConfObject
§interface: *mut debug_query_interface
Implementations§
source§impl DebugQueryInterface
impl DebugQueryInterface
sourcepub fn matching_contexts(&mut self, query: *const c_char) -> Result<AttrValue>
pub fn matching_contexts(&mut self, query: *const c_char) -> Result<AttrValue>
Automatically generated method for the interface
sourcepub fn get_context_group(&mut self, ctx_id: *const c_char) -> Result<AttrValue>
pub fn get_context_group(&mut self, ctx_id: *const c_char) -> Result<AttrValue>
Automatically generated method for the interface
sourcepub fn get_context_parent(&mut self, ctx_id: *const c_char) -> Result<AttrValue>
pub fn get_context_parent(&mut self, ctx_id: *const c_char) -> Result<AttrValue>
Automatically generated method for the interface
sourcepub fn get_context_children(
&mut self,
ctx_id: *const c_char,
) -> Result<AttrValue>
pub fn get_context_children( &mut self, ctx_id: *const c_char, ) -> Result<AttrValue>
Automatically generated method for the interface
sourcepub fn query_for_context_group(
&mut self,
ctx_id: *const c_char,
) -> Result<AttrValue>
pub fn query_for_context_group( &mut self, ctx_id: *const c_char, ) -> Result<AttrValue>
Automatically generated method for the interface
sourcepub fn query_for_context_id(
&mut self,
ctx_id: *const c_char,
) -> Result<AttrValue>
pub fn query_for_context_id( &mut self, ctx_id: *const c_char, ) -> Result<AttrValue>
Automatically generated method for the interface
sourcepub fn query_for_context_tree(
&mut self,
ctx_id: *const c_char,
) -> Result<AttrValue>
pub fn query_for_context_tree( &mut self, ctx_id: *const c_char, ) -> Result<AttrValue>
Automatically generated method for the interface
sourcepub fn context_name(&mut self, ctx_id: *const c_char) -> Result<AttrValue>
pub fn context_name(&mut self, ctx_id: *const c_char) -> Result<AttrValue>
Automatically generated method for the interface
sourcepub fn context_id_for_object(
&mut self,
ctx_obj: *mut conf_object_t,
) -> Result<AttrValue>
pub fn context_id_for_object( &mut self, ctx_obj: *mut conf_object_t, ) -> Result<AttrValue>
Automatically generated method for the interface
sourcepub fn object_for_context(&mut self, ctx_id: *const c_char) -> Result<AttrValue>
pub fn object_for_context(&mut self, ctx_id: *const c_char) -> Result<AttrValue>
Automatically generated method for the interface
Trait Implementations§
source§impl Interface for DebugQueryInterface
impl Interface for DebugQueryInterface
source§type InternalInterface = debug_query_interface
type InternalInterface = debug_query_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 DebugQueryInterface
impl RefUnwindSafe for DebugQueryInterface
impl !Send for DebugQueryInterface
impl !Sync for DebugQueryInterface
impl Unpin for DebugQueryInterface
impl UnwindSafe for DebugQueryInterface
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