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