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