Enum mmap_fixed::MemoryMapKind [] [src]

pub enum MemoryMapKind {
    MapFile(*const u8),
    MapVirtual,
}

Type of memory map

Variants

Virtual memory map. Usually used to change the permissions of a given chunk of memory. Corresponds to VirtualAlloc on Windows.

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

impl Copy for MemoryMapKind
[src]

impl Clone for MemoryMapKind
[src]

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more