pub(crate) enum SpecificSetting {
Bool(BoolSetting),
Enum(Vec<&'static str>),
Num(u8),
}
Variants§
Trait Implementations§
source§impl Hash for SpecificSetting
impl Hash for SpecificSetting
source§impl PartialEq for SpecificSetting
impl PartialEq for SpecificSetting
source§fn eq(&self, other: &SpecificSetting) -> bool
fn eq(&self, other: &SpecificSetting) -> bool
This method tests for
self
and other
values to be equal, and is used
by ==
.impl Eq for SpecificSetting
impl StructuralPartialEq for SpecificSetting
Auto Trait Implementations§
impl Freeze for SpecificSetting
impl RefUnwindSafe for SpecificSetting
impl Send for SpecificSetting
impl Sync for SpecificSetting
impl Unpin for SpecificSetting
impl UnwindSafe for SpecificSetting
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