#[non_exhaustive]pub enum AutoNoYes {
Auto,
No,
Yes,
}Expand description
TSetupBoolAutoNoYes (used for dir_exists_warning,
disable_dir_page, disable_program_group_page).
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.
Implementations§
Trait Implementations§
impl Copy for AutoNoYes
impl Eq for AutoNoYes
impl StructuralPartialEq for AutoNoYes
Auto Trait Implementations§
impl Freeze for AutoNoYes
impl RefUnwindSafe for AutoNoYes
impl Send for AutoNoYes
impl Sync for AutoNoYes
impl Unpin for AutoNoYes
impl UnsafeUnpin for AutoNoYes
impl UnwindSafe for AutoNoYes
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