#[non_exhaustive]#[repr(u32)]pub enum SupportedExdScreenLayouts {
FullScreen = 1,
HalfVertical = 2,
HalfHorizontal = 4,
HalfVerticalRightSplit = 8,
HalfHorizontalBottomSplit = 16,
FullQuarterSplit = 32,
HalfVerticalLeftSplit = 64,
HalfHorizontalTopSplit = 128,
}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.
FullScreen = 1
HalfVertical = 2
HalfHorizontal = 4
HalfVerticalRightSplit = 8
HalfHorizontalBottomSplit = 16
FullQuarterSplit = 32
HalfVerticalLeftSplit = 64
HalfHorizontalTopSplit = 128
Implementations§
Trait Implementations§
Source§impl Clone for SupportedExdScreenLayouts
impl Clone for SupportedExdScreenLayouts
Source§fn clone(&self) -> SupportedExdScreenLayouts
fn clone(&self) -> SupportedExdScreenLayouts
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreSource§impl Debug for SupportedExdScreenLayouts
impl Debug for SupportedExdScreenLayouts
Source§impl Hash for SupportedExdScreenLayouts
impl Hash for SupportedExdScreenLayouts
Source§impl PartialEq for SupportedExdScreenLayouts
impl PartialEq for SupportedExdScreenLayouts
Source§fn eq(&self, other: &SupportedExdScreenLayouts) -> bool
fn eq(&self, other: &SupportedExdScreenLayouts) -> bool
Tests for
self and other values to be equal, and is used by ==.impl Copy for SupportedExdScreenLayouts
impl Eq for SupportedExdScreenLayouts
impl StructuralPartialEq for SupportedExdScreenLayouts
Auto Trait Implementations§
impl Freeze for SupportedExdScreenLayouts
impl RefUnwindSafe for SupportedExdScreenLayouts
impl Send for SupportedExdScreenLayouts
impl Sync for SupportedExdScreenLayouts
impl Unpin for SupportedExdScreenLayouts
impl UnsafeUnpin for SupportedExdScreenLayouts
impl UnwindSafe for SupportedExdScreenLayouts
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