#[repr(u32)]pub enum TidyTriState {
NoState = 0,
YesState = 1,
AutoState = 2,
}Expand description
AutoBool values used by ParseBool, ParseTriState, ParseIndent, ParseBOM @remark This enum’s starting value is guaranteed to remain stable.
Variants§
Trait Implementations§
Source§impl Clone for TidyTriState
impl Clone for TidyTriState
Source§fn clone(&self) -> TidyTriState
fn clone(&self) -> TidyTriState
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 TidyTriState
Source§impl Debug for TidyTriState
impl Debug for TidyTriState
impl Eq for TidyTriState
Source§impl Hash for TidyTriState
impl Hash for TidyTriState
Source§impl PartialEq for TidyTriState
impl PartialEq for TidyTriState
Source§fn eq(&self, other: &TidyTriState) -> bool
fn eq(&self, other: &TidyTriState) -> bool
Tests for
self and other values to be equal, and is used by ==.impl StructuralPartialEq for TidyTriState
Auto Trait Implementations§
impl Freeze for TidyTriState
impl RefUnwindSafe for TidyTriState
impl Send for TidyTriState
impl Sync for TidyTriState
impl Unpin for TidyTriState
impl UnsafeUnpin for TidyTriState
impl UnwindSafe for TidyTriState
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