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