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