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