pub enum ConfigOptionValue {
Quoted(String),
SqliteParameter(String),
Bareword(String),
}Expand description
Possible options for the “values” of configuration options.
Variants§
Trait Implementations§
source§impl Debug for ConfigOptionValue
impl Debug for ConfigOptionValue
source§impl PartialEq for ConfigOptionValue
impl PartialEq for ConfigOptionValue
source§fn eq(&self, other: &ConfigOptionValue) -> bool
fn eq(&self, other: &ConfigOptionValue) -> bool
This method tests for
self and other values to be equal, and is used
by ==.impl Eq for ConfigOptionValue
impl StructuralEq for ConfigOptionValue
impl StructuralPartialEq for ConfigOptionValue
Auto Trait Implementations§
impl RefUnwindSafe for ConfigOptionValue
impl Send for ConfigOptionValue
impl Sync for ConfigOptionValue
impl Unpin for ConfigOptionValue
impl UnwindSafe for ConfigOptionValue
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