#[repr(u8)]pub enum RbarAp {
PrivilegedCode = 0,
PrivilegedAny = 1,
PrivilegedCodeReadOnly = 2,
PrivilegedAnyReadOnly = 3,
}Variants§
PrivilegedCode = 0
Read/write by privileged code only.
PrivilegedAny = 1
Read/write by any privilege level.
PrivilegedCodeReadOnly = 2
Read-only by privileged code only.
PrivilegedAnyReadOnly = 3
Read-only by any privilege level.
Implementations§
Trait Implementations§
Source§impl Ord for RbarAp
impl Ord for RbarAp
Source§impl PartialOrd for RbarAp
impl PartialOrd for RbarAp
impl Copy for RbarAp
impl Eq for RbarAp
impl StructuralPartialEq for RbarAp
Auto Trait Implementations§
impl Freeze for RbarAp
impl RefUnwindSafe for RbarAp
impl Send for RbarAp
impl Sync for RbarAp
impl Unpin for RbarAp
impl UnwindSafe for RbarAp
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