pub enum AutoOption {
True,
False,
Auto,
}
Expand description
An option that may be on, off or automatic.
Variants§
Trait Implementations§
Source§impl Clone for AutoOption
impl Clone for AutoOption
Source§fn clone(&self) -> AutoOption
fn clone(&self) -> AutoOption
Returns a duplicate of the value. Read more
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source
. Read moreSource§impl Debug for AutoOption
impl Debug for AutoOption
Source§impl Display for AutoOption
impl Display for AutoOption
Source§impl PartialEq for AutoOption
impl PartialEq for AutoOption
impl Copy for AutoOption
impl Eq for AutoOption
impl StructuralPartialEq for AutoOption
Auto Trait Implementations§
impl Freeze for AutoOption
impl RefUnwindSafe for AutoOption
impl Send for AutoOption
impl Sync for AutoOption
impl Unpin for AutoOption
impl UnwindSafe for AutoOption
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