Struct simics::api::interface::interfaces::ConcurrencyGroupInterface
source · pub struct ConcurrencyGroupInterface {
obj: *mut ConfObject,
interface: *mut concurrency_group_interface,
}
Expand description
Automatically generated structure for the interface
Fields§
§obj: *mut ConfObject
§interface: *mut concurrency_group_interface
Implementations§
source§impl ConcurrencyGroupInterface
impl ConcurrencyGroupInterface
sourcepub fn serialized_memory_group(
&mut self,
group_index: c_uint,
) -> Result<AttrValue>
pub fn serialized_memory_group( &mut self, group_index: c_uint, ) -> Result<AttrValue>
Automatically generated method for the interface
sourcepub fn execution_group(&mut self, group_index: c_uint) -> Result<AttrValue>
pub fn execution_group(&mut self, group_index: c_uint) -> Result<AttrValue>
Automatically generated method for the interface
Trait Implementations§
source§impl Interface for ConcurrencyGroupInterface
impl Interface for ConcurrencyGroupInterface
source§const NAME: &'static [u8] = crate::api::sys::CONCURRENCY_GROUP_INTERFACE
const NAME: &'static [u8] = crate::api::sys::CONCURRENCY_GROUP_INTERFACE
The name of the interface
source§type InternalInterface = concurrency_group_interface
type InternalInterface = concurrency_group_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 ConcurrencyGroupInterface
impl RefUnwindSafe for ConcurrencyGroupInterface
impl !Send for ConcurrencyGroupInterface
impl !Sync for ConcurrencyGroupInterface
impl Unpin for ConcurrencyGroupInterface
impl UnwindSafe for ConcurrencyGroupInterface
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