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