pub enum SetValue {
String(String),
Ident(String),
Number(String),
Default,
}Expand description
v7.12.1 — payload of a SET right-hand side. PG syntax accepts
a string literal, an identifier (often a config name), an
integer/float, or the bare DEFAULT keyword.
Variants§
Trait Implementations§
impl StructuralPartialEq for SetValue
Auto Trait Implementations§
impl Freeze for SetValue
impl RefUnwindSafe for SetValue
impl Send for SetValue
impl Sync for SetValue
impl Unpin for SetValue
impl UnsafeUnpin for SetValue
impl UnwindSafe for SetValue
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