Struct driverkit::iomem::IOBuf

source ·
pub struct IOBuf { /* private fields */ }
Expand description

Represents an IO buffer (data handed to/from device).

Implementations§

source§

impl IOBuf

source

pub fn new(layout: Layout) -> Result<IOBuf, IOMemError>

source

pub fn expand(&mut self)

Fill buffer with as many 0 as capacity allows.

source

pub fn truncate(&mut self, new_len: usize)

source

pub fn clear(&mut self)

Removes all buffer contents.

source

pub fn copy_in_at( &mut self, offset: usize, src: &[u8] ) -> Result<usize, IOMemError>

Copy data from src into a given offset of the IOBuf.

source

pub fn copy_in(&mut self, src: &[u8]) -> Result<usize, IOMemError>

Copy raw data of size len into the buffer.

source

pub fn copy_out_at( &self, offset: usize, dst: &mut [u8] ) -> Result<usize, IOMemError>

Copy data out of the IOBuf, starting at a given offset into dst.

source

pub fn copy_out(&self, dst: &mut [u8]) -> Result<usize, IOMemError>

Copy the data (starting at 0) to dst slice.

source

pub fn as_slice(&self) -> &[u8]

Get a IOBuf contents as slice.

source

pub fn as_mut_slice(&mut self) -> &mut [u8]

Get a IOBuf contents as mutable slice.

source

pub fn len(&self) -> usize

source

pub fn is_empty(&self) -> bool

Trait Implementations§

source§

impl Debug for IOBuf

source§

fn fmt(&self, f: &mut Formatter<'_>) -> Result

Formats the value using the given formatter. Read more
source§

impl DmaObject for IOBuf

source§

fn paddr(&self) -> PAddr

Address of the IOBuf in main memory.

source§

fn vaddr(&self) -> VAddr

Virtual address this buffer can be access by software.

source§

fn ioaddr(&self) -> IOAddr

source§

impl Index<usize> for IOBuf

implementation for the index operator [] on IOBuf

§

type Output = u8

The returned type after indexing.

source§

fn index(&self, index: usize) -> &Self::Output

Performs the indexing (container[index]) operation.

Auto Trait Implementations§

§

impl RefUnwindSafe for IOBuf

§

impl Send for IOBuf

§

impl Sync for IOBuf

§

impl Unpin for IOBuf

§

impl UnwindSafe for IOBuf

Blanket Implementations§

source§

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

source§

fn type_id(&self) -> TypeId

Gets the TypeId of self. Read more
source§

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

const: unstable · source§

fn borrow(&self) -> &T

Immutably borrows from an owned value. Read more
source§

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

const: unstable · source§

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

Mutably borrows from an owned value. Read more
source§

impl<T> From<T> for T

const: unstable · source§

fn from(t: T) -> T

Returns the argument unchanged.

source§

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

const: unstable · 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 Twhere U: Into<T>,

§

type Error = Infallible

The type returned in the event of a conversion error.
const: unstable · source§

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

Performs the conversion.
source§

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

§

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

The type returned in the event of a conversion error.
const: unstable · source§

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

Performs the conversion.