Enum fuchsia_zircon::VmoOp
[−]
[src]
#[repr(u32)]pub enum VmoOp { Commit, Decommit, Lock, Unlock, CacheSync, CacheInvalidate, CacheClean, CacheCleanInvalidate, }
Variants
CommitCommit size bytes worth of pages starting at byte offset for the VMO.
DecommitRelease a range of pages previously committed to the VMO from offset to offset+size.
LockUnlockCacheSyncPerform a cache sync operation.
CacheInvalidatePerform a cache invalidation operation.
CacheCleanPerform a cache clean operation.
CacheCleanInvalidatePerform cache clean and invalidation operations together.
Trait Implementations
impl Debug for VmoOp[src]
impl Copy for VmoOp[src]
impl Clone for VmoOp[src]
fn clone(&self) -> VmoOp[src]
Returns a copy of the value. Read more
fn clone_from(&mut self, source: &Self)1.0.0[src]
Performs copy-assignment from source. Read more