pub enum ExprValue {
String(String),
Number(f64),
Bool(bool),
Null,
}Expand description
A literal value in a WHERE expression.
Variants§
String(String)
A string literal (single- or double-quoted).
Number(f64)
A numeric literal.
Bool(bool)
A boolean literal (true or false).
Null
The null literal.
Trait Implementations§
impl StructuralPartialEq for ExprValue
Auto Trait Implementations§
impl Freeze for ExprValue
impl RefUnwindSafe for ExprValue
impl Send for ExprValue
impl Sync for ExprValue
impl Unpin for ExprValue
impl UnsafeUnpin for ExprValue
impl UnwindSafe for ExprValue
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