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