#[repr(C)]pub enum drmMapFlags {
DRM_RESTRICTED = 1,
DRM_READ_ONLY = 2,
DRM_LOCKED = 4,
DRM_KERNEL = 8,
DRM_WRITE_COMBINING = 16,
DRM_CONTAINS_LOCK = 32,
DRM_REMOVABLE = 64,
}Variants§
DRM_RESTRICTED = 1
DRM_READ_ONLY = 2
DRM_LOCKED = 4
DRM_KERNEL = 8
DRM_WRITE_COMBINING = 16
DRM_CONTAINS_LOCK = 32
DRM_REMOVABLE = 64
Auto Trait Implementations§
impl Freeze for drmMapFlags
impl RefUnwindSafe for drmMapFlags
impl Send for drmMapFlags
impl Sync for drmMapFlags
impl Unpin for drmMapFlags
impl UnwindSafe for drmMapFlags
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