[][src]Struct region::Region

pub struct Region {
    pub base: *const u8,
    pub guarded: bool,
    pub protection: Protection,
    pub shared: bool,
    pub size: usize,
}

A descriptor for a memory region

This type acts as a POD-type, i.e it has no functionality but merely stores region information.

Fields

base: *const u8

Base address of the region

guarded: bool

Whether the region is guarded or not

protection: Protection

Protection of the region

shared: bool

Whether the region is shared or not

size: usize

Size of the region (multiple of page size)

Methods

impl Region[src]

pub fn lower(&self) -> usize[src]

Returns the region's lower bound.

pub fn upper(&self) -> usize[src]

Returns the region's upper bound.

Trait Implementations

impl Sync for Region[src]

impl Send for Region[src]

impl Copy for Region[src]

impl Clone for Region[src]

fn clone_from(&mut self, source: &Self)1.0.0[src]

Performs copy-assignment from source. Read more

impl Debug for Region[src]

Blanket Implementations

impl<T> ToOwned for T where
    T: Clone
[src]

type Owned = T

The resulting type after obtaining ownership.

impl<T, U> Into<U> for T where
    U: From<T>, 
[src]

impl<T> From<T> for T[src]

impl<T, U> TryFrom<U> for T where
    U: Into<T>, 
[src]

type Error = Infallible

The type returned in the event of a conversion error.

impl<T, U> TryInto<U> for T where
    U: TryFrom<T>, 
[src]

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

The type returned in the event of a conversion error.

impl<T> BorrowMut<T> for T where
    T: ?Sized
[src]

impl<T> Borrow<T> for T where
    T: ?Sized
[src]

impl<T> Any for T where
    T: 'static + ?Sized
[src]