#[non_exhaustive]#[repr(u8)]pub enum AnalogWatchfaceLayout {
Minimal = 0,
Traditional = 1,
Modern = 2,
}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.
Implementations§
Trait Implementations§
Source§impl Clone for AnalogWatchfaceLayout
impl Clone for AnalogWatchfaceLayout
Source§fn clone(&self) -> AnalogWatchfaceLayout
fn clone(&self) -> AnalogWatchfaceLayout
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 AnalogWatchfaceLayout
impl Debug for AnalogWatchfaceLayout
Source§impl Hash for AnalogWatchfaceLayout
impl Hash for AnalogWatchfaceLayout
Source§impl PartialEq for AnalogWatchfaceLayout
impl PartialEq for AnalogWatchfaceLayout
Source§fn eq(&self, other: &AnalogWatchfaceLayout) -> bool
fn eq(&self, other: &AnalogWatchfaceLayout) -> bool
Tests for
self and other values to be equal, and is used by ==.impl Copy for AnalogWatchfaceLayout
impl Eq for AnalogWatchfaceLayout
impl StructuralPartialEq for AnalogWatchfaceLayout
Auto Trait Implementations§
impl Freeze for AnalogWatchfaceLayout
impl RefUnwindSafe for AnalogWatchfaceLayout
impl Send for AnalogWatchfaceLayout
impl Sync for AnalogWatchfaceLayout
impl Unpin for AnalogWatchfaceLayout
impl UnsafeUnpin for AnalogWatchfaceLayout
impl UnwindSafe for AnalogWatchfaceLayout
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