Enum mmap_fixed_fixed::MemoryMapKind
source · [−]Expand description
Type of memory map
Variants
MapFile(*const u8)
Virtual memory map. Usually used to change the permissions of a given
chunk of memory. Corresponds to VirtualAlloc on Windows.
MapVirtual
Virtual memory map. Usually used to change the permissions of a given
chunk of memory, or for allocation. Corresponds to VirtualAlloc on
Windows.
Trait Implementations
sourceimpl Clone for MemoryMapKind
impl Clone for MemoryMapKind
sourcefn clone(&self) -> MemoryMapKind
fn clone(&self) -> MemoryMapKind
Returns a copy of the value. Read more
1.0.0 · sourcefn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from source. Read more
impl Copy for MemoryMapKind
Auto Trait Implementations
impl RefUnwindSafe for MemoryMapKind
impl !Send for MemoryMapKind
impl !Sync for MemoryMapKind
impl Unpin for MemoryMapKind
impl UnwindSafe for MemoryMapKind
Blanket Implementations
sourceimpl<T> BorrowMut<T> for T where
T: ?Sized,
impl<T> BorrowMut<T> for T where
T: ?Sized,
const: unstable · sourcefn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more
sourceimpl<T> ToOwned for T where
T: Clone,
impl<T> ToOwned for T where
T: Clone,
type Owned = T
type Owned = T
The resulting type after obtaining ownership.
sourcefn clone_into(&self, target: &mut T)
fn clone_into(&self, target: &mut T)
🔬 This is a nightly-only experimental API. (
toowned_clone_into)Uses borrowed data to replace owned data, usually by cloning. Read more