pub enum Scalar {
Null,
Boolean(bool),
Int64(i64),
Float64(f64),
Utf8(String),
}Expand description
Expression AST and supporting enums. Scalar literal values.
Variants§
Null
Null literal.
Boolean(bool)
Boolean literal.
Int64(i64)
64-bit integer literal.
Float64(f64)
64-bit float literal.
Utf8(String)
UTF-8 string literal.
Trait Implementations§
impl StructuralPartialEq for Scalar
Auto Trait Implementations§
impl Freeze for Scalar
impl RefUnwindSafe for Scalar
impl Send for Scalar
impl Sync for Scalar
impl Unpin for Scalar
impl UnwindSafe for Scalar
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