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