#[non_exhaustive]#[repr(u64)]pub enum ClientCap {
Stereo3d = 1,
UniversalPlanes = 2,
Atomic = 3,
AspectRatio = 4,
WritebackConnectors = 5,
CursorPlaneHotspot = 6,
}
Expand description
Enumeration of DRM client capabilities.
Variants (Non-exhaustive)§
This enum is marked as non-exhaustive
Non-exhaustive enums could have additional variants added in future. Therefore, when matching against variants of non-exhaustive enums, an extra wildcard arm must be added to account for any future variants.
Stereo3d = 1
UniversalPlanes = 2
Atomic = 3
AspectRatio = 4
WritebackConnectors = 5
CursorPlaneHotspot = 6
Trait Implementations§
Auto Trait Implementations§
impl Freeze for ClientCap
impl RefUnwindSafe for ClientCap
impl Send for ClientCap
impl Sync for ClientCap
impl Unpin for ClientCap
impl UnwindSafe for ClientCap
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