Struct region::Region [−][src]
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 u8Base address of the region
guarded: boolWhether the region is guarded or not
protection: ProtectionProtection of the region
Whether the region is shared or not
size: usizeSize of the region (multiple of page size)
Implementations
impl Region[src]
impl Region[src]