Struct guestmem::ranges::PagedRange

source ·
pub struct PagedRange<'a> { /* private fields */ }
Expand description

A range of guest memory spanning multiple discontiguous pages.

This is represented by an offset, a length, and a list of pages. The range may span the first and last pages only partially, but the interior pages are completely covered by the range.

Implementations§

source§

impl<'a> PagedRange<'a>

source

pub const PAGE_SIZE: usize = 4_096usize

The page size for GPNs. This is always 4KB.

source

pub const fn new(offset: usize, len: usize, gpns: &'a [u64]) -> Option<Self>

Creates a new range over gpns, starting at offset bytes into the page list, extending for len bytes.

Returns None if offset or len are out of bounds.

source

pub const fn empty() -> Self

Returns the empty range.

source

pub fn try_subrange(&self, offset: usize, len: usize) -> Option<Self>

Returns a subrange of this range, or None if the subrange is outside this range.

source

pub fn subrange(&self, offset: usize, len: usize) -> Self

Returns a subrange of this range.

Panics if the subrange is outside this range.

source

pub fn len(&self) -> usize

Returns the length of the range in bytes.

source

pub fn is_empty(&self) -> bool

Returns whether the range is empty.

source

pub fn offset(&self) -> usize

Returns the byte offset into the first page of the range.

source

pub fn gpns(&self) -> &'a [u64]

Returns the range’s list of page numbers.

source

pub fn skip(&mut self, len: usize)

Skips the first len bytes of the range.

Panics if len is larger than the range’s length.

source

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

Truncates the range to len bytes.

Panics if len is larger than the range’s length.

source

pub fn split(self, offset: usize) -> (Self, Self)

Splits the range at offset.

Panics if offset is outside the range.

source

pub fn try_split(self, offset: usize) -> Option<(Self, Self)>

Splits the range at offset, returning None if offset is outside the range.

source

pub fn pop_front_range(&mut self) -> Option<Result<AddressRange, InvalidGpn>>

Removes and returns the first contiguous range.

source

pub fn reader(self, mem: &'a GuestMemory) -> PagedRangeReader<'a>

Returns a MemoryRead implementation.

source

pub fn writer(self, mem: &'a GuestMemory) -> PagedRangeWriter<'a>

Returns a MemoryWrite implementation.

source

pub fn ranges(self) -> PagedRangeRangeIter<'a>

Returns an iterator over the AddressRanges represented by this range.

Trait Implementations§

source§

impl<'a> Clone for PagedRange<'a>

source§

fn clone(&self) -> PagedRange<'a>

Returns a copy of the value. Read more
1.0.0 · source§

fn clone_from(&mut self, source: &Self)

Performs copy-assignment from source. Read more
source§

impl<'a> Debug for PagedRange<'a>

source§

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

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

impl<'a> Copy for PagedRange<'a>

Auto Trait Implementations§

§

impl<'a> Freeze for PagedRange<'a>

§

impl<'a> RefUnwindSafe for PagedRange<'a>

§

impl<'a> Send for PagedRange<'a>

§

impl<'a> Sync for PagedRange<'a>

§

impl<'a> Unpin for PagedRange<'a>

§

impl<'a> UnwindSafe for PagedRange<'a>

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> CloneToUninit for T
where T: Clone,

source§

unsafe fn clone_to_uninit(&self, dst: *mut T)

🔬This is a nightly-only experimental API. (clone_to_uninit)
Performs copy-assignment from self to dst. Read more
source§

impl<T> From<T> for T

source§

fn from(t: T) -> T

Returns the argument unchanged.

source§

impl<T> Instrument for T

source§

fn instrument(self, span: Span) -> Instrumented<Self>

Instruments this type with the provided Span, returning an Instrumented wrapper. Read more
source§

fn in_current_span(self) -> Instrumented<Self>

Instruments this type with the current Span, returning an Instrumented wrapper. Read more
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> ToOwned for T
where T: Clone,

source§

type Owned = T

The resulting type after obtaining ownership.
source§

fn to_owned(&self) -> T

Creates owned data from borrowed data, usually by cloning. Read more
source§

fn clone_into(&self, target: &mut T)

Uses borrowed data to replace owned data, usually by cloning. Read more
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.
source§

impl<T> WithSubscriber for T

source§

fn with_subscriber<S>(self, subscriber: S) -> WithDispatch<Self>
where S: Into<Dispatch>,

Attaches the provided Subscriber to this type, returning a WithDispatch wrapper. Read more
source§

fn with_current_subscriber(self) -> WithDispatch<Self>

Attaches the current default Subscriber to this type, returning a WithDispatch wrapper. Read more
source§

impl<T, U> Upcast<U> for T
where U: Downcast<T>,