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