Struct kernel::processbuffer::WriteableProcessSlice

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

Read-writeable and accessible slice of memory of a process buffer

The only way to obtain this struct is through a ReadWriteProcessBuffer.

Slices provide a more convenient, traditional interface to process memory. These slices are transient, as the underlying buffer must be checked each time a slice is created. This is usually enforced by the anonymous lifetime defined by the creation of the slice.

Implementations§

source§

impl WriteableProcessSlice

source

pub fn copy_to_slice(&self, dest: &mut [u8])

Copy the contents of a WriteableProcessSlice into a mutable slice reference.

The length of self must be the same as dest. Subslicing can be used to obtain a slice of matching length.

§Panics

This function will panic if self.len() != dest.len().

source

pub fn copy_to_slice_or_err(&self, dest: &mut [u8]) -> Result<(), ErrorCode>

Copy the contents of a WriteableProcessSlice into a mutable slice reference.

The length of self must be the same as dest. Subslicing can be used to obtain a slice of matching length.

source

pub fn copy_from_slice(&self, src: &[u8])

Copy the contents of a slice of bytes into a WriteableProcessSlice.

The length of src must be the same as self. Subslicing can be used to obtain a slice of matching length.

§Panics

This function will panic if src.len() != self.len().

source

pub fn copy_from_slice_or_err(&self, src: &[u8]) -> Result<(), ErrorCode>

Copy the contents of a slice of bytes into a WriteableProcessSlice.

The length of src must be the same as self. Subslicing can be used to obtain a slice of matching length.

source

pub fn len(&self) -> usize

Return the length of the slice in bytes.

source

pub fn iter(&self) -> Iter<'_, Cell<u8>>

Return an iterator over the slice.

source

pub fn chunks( &self, chunk_size: usize, ) -> impl Iterator<Item = &WriteableProcessSlice>

Iterate over the slice in chunks.

source

pub fn get<I: ProcessSliceIndex<Self>>( &self, index: I, ) -> Option<&<I as ProcessSliceIndex<Self>>::Output>

Access a portion of the slice with bounds checking. If the access is not within the slice then None is returned.

source

pub fn get_from( &self, range: RangeFrom<usize>, ) -> Option<&WriteableProcessSlice>

👎Deprecated: Use WriteableProcessSlice::get instead

Access a portion of the slice with bounds checking. If the access is not within the slice then None is returned.

source

pub fn get_to(&self, range: RangeTo<usize>) -> Option<&WriteableProcessSlice>

👎Deprecated: Use WriteableProcessSlice::get instead

Access a portion of the slice with bounds checking. If the access is not within the slice then None is returned.

Trait Implementations§

source§

impl<'a> From<&'a mut [u8]> for &'a WriteableProcessSlice

source§

fn from(val: &'a mut [u8]) -> Self

Converts to this type from the input type.
source§

impl<I: ProcessSliceIndex<Self>> Index<I> for WriteableProcessSlice

§

type Output = <I as ProcessSliceIndex<WriteableProcessSlice>>::Output

The returned type after indexing.
source§

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

Performs the indexing (container[index]) operation. Read more
source§

impl ProcessSliceIndex<WriteableProcessSlice> for Range<usize>

source§

impl ProcessSliceIndex<WriteableProcessSlice> for RangeFrom<usize>

source§

impl ProcessSliceIndex<WriteableProcessSlice> for RangeTo<usize>

source§

impl ProcessSliceIndex<WriteableProcessSlice> for usize

§

type Output = Cell<u8>

source§

fn get(self, slice: &WriteableProcessSlice) -> Option<&Self::Output>

source§

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

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