#[repr(u32)]pub enum TidyOptionType {
String = 0,
Integer = 1,
Boolean = 2,
}Expand description
A Tidy configuration option can have one of these data types.
Variants§
Trait Implementations§
Source§impl Clone for TidyOptionType
impl Clone for TidyOptionType
Source§fn clone(&self) -> TidyOptionType
fn clone(&self) -> TidyOptionType
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 TidyOptionType
Source§impl Debug for TidyOptionType
impl Debug for TidyOptionType
impl Eq for TidyOptionType
Source§impl Hash for TidyOptionType
impl Hash for TidyOptionType
Source§impl PartialEq for TidyOptionType
impl PartialEq for TidyOptionType
Source§fn eq(&self, other: &TidyOptionType) -> bool
fn eq(&self, other: &TidyOptionType) -> bool
Tests for
self and other values to be equal, and is used by ==.impl StructuralPartialEq for TidyOptionType
Auto Trait Implementations§
impl Freeze for TidyOptionType
impl RefUnwindSafe for TidyOptionType
impl Send for TidyOptionType
impl Sync for TidyOptionType
impl Unpin for TidyOptionType
impl UnsafeUnpin for TidyOptionType
impl UnwindSafe for TidyOptionType
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