#[repr(usize)]pub enum EntryBits {
Show 15 variants
None = 0,
Valid = 1,
Read = 2,
Write = 4,
Execute = 8,
User = 16,
Global = 32,
Access = 64,
Dirty = 128,
ReadWrite = 6,
ReadExecute = 10,
ReadWriteExecute = 14,
UserReadWrite = 22,
UserReadExecute = 26,
UserReadWriteExecute = 30,
}Expand description
Represent (repr) our entry bits as unsigned 64-bit integers.
Variants§
None = 0
Valid = 1
Read = 2
Write = 4
Execute = 8
User = 16
Global = 32
Access = 64
Dirty = 128
ReadWrite = 6
ReadExecute = 10
ReadWriteExecute = 14
UserReadWrite = 22
UserReadExecute = 26
UserReadWriteExecute = 30
Implementations§
Trait Implementations§
Auto Trait Implementations§
impl Freeze for EntryBits
impl RefUnwindSafe for EntryBits
impl Send for EntryBits
impl Sync for EntryBits
impl Unpin for EntryBits
impl UnwindSafe for EntryBits
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