Struct region::Region [−][src]
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
Whether the region is shared or not
size: usize
Size of the region (multiple of page size)
Implementations
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 Clone for Region
[src]
impl Copy for Region
[src]
impl Debug for Region
[src]
impl Send for Region
[src]
impl Sync for Region
[src]
Auto Trait Implementations
Blanket Implementations
impl<T> Any for T where
T: 'static + ?Sized,
[src]
T: 'static + ?Sized,
impl<T> Borrow<T> for T where
T: ?Sized,
[src]
T: ?Sized,
impl<T> BorrowMut<T> for T where
T: ?Sized,
[src]
T: ?Sized,
pub fn borrow_mut(&mut self) -> &mut T
[src]
impl<T> From<T> for T
[src]
impl<T, U> Into<U> for T where
U: From<T>,
[src]
U: From<T>,
impl<T> ToOwned for T where
T: Clone,
[src]
T: Clone,
type Owned = T
The resulting type after obtaining ownership.
pub fn to_owned(&self) -> T
[src]
pub fn clone_into(&self, target: &mut T)
[src]
impl<T, U> TryFrom<U> for T where
U: Into<T>,
[src]
U: Into<T>,
type Error = Infallible
The type returned in the event of a conversion error.
pub fn try_from(value: U) -> Result<T, <T as TryFrom<U>>::Error>
[src]
impl<T, U> TryInto<U> for T where
U: TryFrom<T>,
[src]
U: TryFrom<T>,