#[non_exhaustive]#[repr(u8)]pub enum TimePickerSlot {
Header = 0,
}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.
Header = 0
Trait Implementations§
Source§impl Clone for TimePickerSlot
impl Clone for TimePickerSlot
Source§fn clone(&self) -> TimePickerSlot
fn clone(&self) -> TimePickerSlot
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 moreimpl Copy for TimePickerSlot
Source§impl Debug for TimePickerSlot
impl Debug for TimePickerSlot
impl Eq for TimePickerSlot
Source§impl Hash for TimePickerSlot
impl Hash for TimePickerSlot
Source§impl PartialEq for TimePickerSlot
impl PartialEq for TimePickerSlot
impl StructuralPartialEq for TimePickerSlot
Auto Trait Implementations§
impl Freeze for TimePickerSlot
impl RefUnwindSafe for TimePickerSlot
impl Send for TimePickerSlot
impl Sync for TimePickerSlot
impl Unpin for TimePickerSlot
impl UnsafeUnpin for TimePickerSlot
impl UnwindSafe for TimePickerSlot
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