Struct simics::api::interface::interfaces::I2cLinkInterface
source · pub struct I2cLinkInterface {
obj: *mut ConfObject,
interface: *mut i2c_link_interface,
}
Expand description
Automatically generated structure for the interface
Fields§
§obj: *mut ConfObject
§interface: *mut i2c_link_interface
Implementations§
source§impl I2cLinkInterface
impl I2cLinkInterface
sourcepub fn register_slave_address(
&mut self,
slave: *mut conf_object_t,
address: uint32,
mask: uint32,
) -> Result<()>
pub fn register_slave_address( &mut self, slave: *mut conf_object_t, address: uint32, mask: uint32, ) -> Result<()>
Automatically generated method for the interface
sourcepub fn unregister_slave_address(
&mut self,
slave: *mut conf_object_t,
address: uint32,
mask: uint32,
) -> Result<()>
pub fn unregister_slave_address( &mut self, slave: *mut conf_object_t, address: uint32, mask: uint32, ) -> Result<()>
Automatically generated method for the interface
sourcepub fn register_bridge(&mut self, bridge: *mut conf_object_t) -> Result<()>
pub fn register_bridge(&mut self, bridge: *mut conf_object_t) -> Result<()>
Automatically generated method for the interface
sourcepub fn disconnect_device(&mut self, device: *mut conf_object_t) -> Result<()>
pub fn disconnect_device(&mut self, device: *mut conf_object_t) -> Result<()>
Automatically generated method for the interface
sourcepub fn start_request(
&mut self,
master: *mut conf_object_t,
address: uint32,
) -> Result<()>
pub fn start_request( &mut self, master: *mut conf_object_t, address: uint32, ) -> Result<()>
Automatically generated method for the interface
sourcepub fn read_request(&mut self, master: *mut conf_object_t) -> Result<()>
pub fn read_request(&mut self, master: *mut conf_object_t) -> Result<()>
Automatically generated method for the interface
sourcepub fn ack_read_request(
&mut self,
master: *mut conf_object_t,
ack: i2c_status_t,
) -> Result<()>
pub fn ack_read_request( &mut self, master: *mut conf_object_t, ack: i2c_status_t, ) -> Result<()>
Automatically generated method for the interface
sourcepub fn write_request(
&mut self,
master: *mut conf_object_t,
value: uint8,
) -> Result<()>
pub fn write_request( &mut self, master: *mut conf_object_t, value: uint8, ) -> Result<()>
Automatically generated method for the interface
sourcepub fn read_response(
&mut self,
slave: *mut conf_object_t,
value: uint8,
) -> Result<()>
pub fn read_response( &mut self, slave: *mut conf_object_t, value: uint8, ) -> Result<()>
Automatically generated method for the interface
sourcepub fn ack_read_response(&mut self, slave: *mut conf_object_t) -> Result<()>
pub fn ack_read_response(&mut self, slave: *mut conf_object_t) -> Result<()>
Automatically generated method for the interface
sourcepub fn write_response(
&mut self,
slave: *mut conf_object_t,
status: i2c_status_t,
) -> Result<()>
pub fn write_response( &mut self, slave: *mut conf_object_t, status: i2c_status_t, ) -> Result<()>
Automatically generated method for the interface
sourcepub fn start_response(
&mut self,
slave: *mut conf_object_t,
status: i2c_status_t,
) -> Result<()>
pub fn start_response( &mut self, slave: *mut conf_object_t, status: i2c_status_t, ) -> Result<()>
Automatically generated method for the interface
Trait Implementations§
source§impl Interface for I2cLinkInterface
impl Interface for I2cLinkInterface
source§type InternalInterface = i2c_link_interface
type InternalInterface = i2c_link_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 I2cLinkInterface
impl RefUnwindSafe for I2cLinkInterface
impl !Send for I2cLinkInterface
impl !Sync for I2cLinkInterface
impl Unpin for I2cLinkInterface
impl UnwindSafe for I2cLinkInterface
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