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