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