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