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
impl Eq for ConfigOptionValue
impl StructuralPartialEq for ConfigOptionValue
Auto Trait Implementations§
impl Freeze for ConfigOptionValue
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