Struct simics::api::interface::interfaces::NiosCacheInterface
source · pub struct NiosCacheInterface {
obj: *mut ConfObject,
interface: *mut nios_cache_interface,
}
Expand description
Automatically generated structure for the interface
Fields§
§obj: *mut ConfObject
§interface: *mut nios_cache_interface
Implementations§
source§impl NiosCacheInterface
impl NiosCacheInterface
sourcepub fn flushd(&mut self, addr: logical_address_t) -> Result<()>
pub fn flushd(&mut self, addr: logical_address_t) -> Result<()>
Automatically generated method for the interface
sourcepub fn flushda(&mut self, addr: logical_address_t) -> Result<()>
pub fn flushda(&mut self, addr: logical_address_t) -> Result<()>
Automatically generated method for the interface
sourcepub fn flushi(&mut self, addr: logical_address_t) -> Result<()>
pub fn flushi(&mut self, addr: logical_address_t) -> Result<()>
Automatically generated method for the interface
sourcepub fn initd(&mut self, addr: logical_address_t) -> Result<()>
pub fn initd(&mut self, addr: logical_address_t) -> Result<()>
Automatically generated method for the interface
sourcepub fn initda(&mut self, addr: logical_address_t) -> Result<()>
pub fn initda(&mut self, addr: logical_address_t) -> Result<()>
Automatically generated method for the interface
Trait Implementations§
source§impl Interface for NiosCacheInterface
impl Interface for NiosCacheInterface
source§type InternalInterface = nios_cache_interface
type InternalInterface = nios_cache_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 NiosCacheInterface
impl RefUnwindSafe for NiosCacheInterface
impl !Send for NiosCacheInterface
impl !Sync for NiosCacheInterface
impl Unpin for NiosCacheInterface
impl UnwindSafe for NiosCacheInterface
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