Struct simics::api::interface::interfaces::ImageInterface

source ·
pub struct ImageInterface {
    obj: *mut ConfObject,
    interface: *mut image_interface,
}
Expand description

Automatically generated structure for the interface

Fields§

§obj: *mut ConfObject§interface: *mut image_interface

Implementations§

source§

impl ImageInterface

source

pub fn read( &mut self, to_buf: *mut c_void, start: uint64, length: usize, ) -> Result<()>

Automatically generated method for the interface

source

pub fn write( &mut self, from_buf: *const c_void, start: uint64, length: usize, ) -> Result<()>

Automatically generated method for the interface

source

pub fn for_all_spages( &mut self, f: Option<unsafe extern "C" fn(p: *mut image_spage_t, ofs: uint64, arg: *mut c_void) -> c_int>, arg: *mut c_void, ) -> Result<c_int>

Automatically generated method for the interface

source

pub fn set_persistent(&mut self) -> Result<()>

Automatically generated method for the interface

source

pub fn save_to_file( &mut self, file: *const c_char, start: uint64, length: uint64, ) -> Result<()>

Automatically generated method for the interface

source

pub fn save_diff(&mut self, file: *const c_char) -> Result<()>

Automatically generated method for the interface

source

pub fn clear_range(&mut self, start: uint64, length: uint64) -> Result<()>

Automatically generated method for the interface

source

pub fn fill( &mut self, start: uint64, length: uint64, value: uint8, ) -> Result<()>

Automatically generated method for the interface

source

pub fn size(&mut self) -> Result<uint64>

Automatically generated method for the interface

source

pub fn set(&mut self, ofs: uint64, b: bytes_t) -> Result<()>

Automatically generated method for the interface

source

pub fn get(&mut self, ofs: uint64, size: usize) -> Result<bytes_t>

Automatically generated method for the interface

source

pub fn flush_writable(&mut self) -> Result<()>

Automatically generated method for the interface

Trait Implementations§

source§

impl Interface for ImageInterface

source§

const NAME: &'static [u8] = crate::api::sys::IMAGE_INTERFACE

The name of the interface
source§

type InternalInterface = image_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]

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

Create a new instance of this interface
source§

fn register(cls: *mut ConfClass) -> Result<()>
where Self: Sized,

Register this interface for a type
source§

fn get(obj: *mut ConfObject) -> Result<Self>
where Self: Sized,

Get this interface for an object that implements it

Auto Trait Implementations§

Blanket Implementations§

source§

impl<T> Any for T
where T: 'static + ?Sized,

source§

fn type_id(&self) -> TypeId

Gets the TypeId of self. Read more
source§

impl<T> Borrow<T> for T
where T: ?Sized,

source§

fn borrow(&self) -> &T

Immutably borrows from an owned value. Read more
source§

impl<T> BorrowMut<T> for T
where T: ?Sized,

source§

fn borrow_mut(&mut self) -> &mut T

Mutably borrows from an owned value. Read more
source§

impl<T> From<T> for T

source§

fn from(t: T) -> T

Returns the argument unchanged.

source§

impl<T, U> Into<U> for T
where U: From<T>,

source§

fn into(self) -> U

Calls U::from(self).

That is, this conversion is whatever the implementation of From<T> for U chooses to do.

source§

impl<T, U> TryFrom<U> for T
where U: Into<T>,

source§

type Error = Infallible

The type returned in the event of a conversion error.
source§

fn try_from(value: U) -> Result<T, <T as TryFrom<U>>::Error>

Performs the conversion.
source§

impl<T, U> TryInto<U> for T
where U: TryFrom<T>,

source§

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.
source§

fn try_into(self) -> Result<U, <U as TryFrom<T>>::Error>

Performs the conversion.