Enum magenta::VmoOp [] [src]

#[repr(u32)]
pub enum VmoOp { Commit, Decommit, Lock, Unlock, CacheSync, CacheInvalidate, CacheClean, CacheCleanInvalidate, }

Variants

Commit size bytes worth of pages starting at byte offset for the VMO.

Release a range of pages previously committed to the VMO from offset to offset+size.

Perform a cache sync operation.

Perform a cache invalidation operation.

Perform a cache clean operation.

Perform cache clean and invalidation operations together.

Trait Implementations

impl Debug for VmoOp
[src]

Formats the value using the given formatter.

impl Copy for VmoOp
[src]

impl Clone for VmoOp
[src]

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more

impl Eq for VmoOp
[src]

impl PartialEq for VmoOp
[src]

This method tests for self and other values to be equal, and is used by ==. Read more

This method tests for !=.