pub struct VmaFlags {
pub read: bool,
pub write: bool,
pub exec: bool,
pub shared: bool,
}Expand description
Permission flags for a virtual memory area.
Fields§
§read: boolVM_READ (0x1).
write: boolVM_WRITE (0x2).
exec: boolVM_EXEC (0x4).
VM_SHARED (0x8).
Implementations§
Trait Implementations§
impl Copy for VmaFlags
impl Eq for VmaFlags
impl StructuralPartialEq for VmaFlags
Auto Trait Implementations§
impl Freeze for VmaFlags
impl RefUnwindSafe for VmaFlags
impl Send for VmaFlags
impl Sync for VmaFlags
impl Unpin for VmaFlags
impl UnsafeUnpin for VmaFlags
impl UnwindSafe for VmaFlags
Blanket Implementations§
Source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
Source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more
Source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
Source§impl<Q, K> Equivalent<K> for Q
impl<Q, K> Equivalent<K> for Q
Source§fn equivalent(&self, key: &K) -> bool
fn equivalent(&self, key: &K) -> bool
Compare self to
key and return true if they are equal.