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