Struct simics::api::interface::interfaces::ArmAvicInterface
source · pub struct ArmAvicInterface {
obj: *mut ConfObject,
interface: *mut arm_avic_interface,
}
Expand description
Automatically generated structure for the interface
Fields§
§obj: *mut ConfObject
§interface: *mut arm_avic_interface
Implementations§
source§impl ArmAvicInterface
impl ArmAvicInterface
sourcepub fn get_interrupt_address(&mut self) -> Result<arm_avic_t>
pub fn get_interrupt_address(&mut self) -> Result<arm_avic_t>
Automatically generated method for the interface
Trait Implementations§
source§impl Interface for ArmAvicInterface
impl Interface for ArmAvicInterface
source§type InternalInterface = arm_avic_interface
type InternalInterface = arm_avic_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 ArmAvicInterface
impl RefUnwindSafe for ArmAvicInterface
impl !Send for ArmAvicInterface
impl !Sync for ArmAvicInterface
impl Unpin for ArmAvicInterface
impl UnwindSafe for ArmAvicInterface
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