Enum partiql_ast::ast::Lit

source ·
pub enum Lit {
Show 21 variants Null, Missing, Int8Lit(i8), Int16Lit(i16), Int32Lit(i32), Int64Lit(i64), DecimalLit(Decimal), NumericLit(Decimal), RealLit(f32), FloatLit(f32), DoubleLit(f64), BoolLit(bool), IonStringLit(String), CharStringLit(String), NationalCharStringLit(String), BitStringLit(String), HexStringLit(String), StructLit(AstNode<Struct>), BagLit(AstNode<Bag>), ListLit(AstNode<List>), TypedLit(String, Type),
}
Expand description

Lit is mostly inspired by SQL-92 Literals standard and PartiQL specification. See section 5.3 in the following: https://www.contrib.andrew.cmu.edu/~shadow/sql/sql1992.txt and Section 2 of the following (Figure 1: BNF Grammar for PartiQL Values): https://partiql.org/assets/PartiQL-Specification.pdf

Variants§

§

Null

§

Missing

§

Int8Lit(i8)

§

Int16Lit(i16)

§

Int32Lit(i32)

§

Int64Lit(i64)

§

DecimalLit(Decimal)

§

NumericLit(Decimal)

§

RealLit(f32)

§

FloatLit(f32)

§

DoubleLit(f64)

§

BoolLit(bool)

§

IonStringLit(String)

§

CharStringLit(String)

§

NationalCharStringLit(String)

§

BitStringLit(String)

§

HexStringLit(String)

§

StructLit(AstNode<Struct>)

§

BagLit(AstNode<Bag>)

§

ListLit(AstNode<List>)

§

TypedLit(String, Type)

E.g. TIME WITH TIME ZONE in SELECT TIME WITH TIME ZONE '12:00' FROM ...

Trait Implementations§

source§

impl Clone for Lit

source§

fn clone(&self) -> Lit

Returns a copy of the value. Read more
1.0.0 · source§

fn clone_from(&mut self, source: &Self)

Performs copy-assignment from source. Read more
source§

impl Debug for Lit

source§

fn fmt(&self, f: &mut Formatter<'_>) -> Result

Formats the value using the given formatter. Read more
source§

impl PartialEq<Lit> for Lit

source§

fn eq(&self, other: &Lit) -> bool

This method tests for self and other values to be equal, and is used by ==.
1.0.0 · source§

fn ne(&self, other: &Rhs) -> bool

This method tests for !=. The default implementation is almost always sufficient, and should not be overridden without very good reason.
source§

impl Visit for Lit

source§

fn visit<'v, V>(&'v self, v: &mut V) -> Traversewhere V: Visitor<'v>,

source§

impl StructuralPartialEq for Lit

Auto Trait Implementations§

§

impl RefUnwindSafe for Lit

§

impl Send for Lit

§

impl Sync for Lit

§

impl Unpin for Lit

§

impl UnwindSafe for Lit

Blanket Implementations§

source§

impl<T> Any for Twhere T: 'static + ?Sized,

source§

fn type_id(&self) -> TypeId

Gets the TypeId of self. Read more
source§

impl<T> Borrow<T> for Twhere T: ?Sized,

source§

fn borrow(&self) -> &T

Immutably borrows from an owned value. Read more
source§

impl<T> BorrowMut<T> for Twhere T: ?Sized,

source§

fn borrow_mut(&mut self) -> &mut T

Mutably borrows from an owned value. Read more
source§

impl<T> From<T> for T

source§

fn from(t: T) -> T

Returns the argument unchanged.

source§

impl<T, U> Into<U> for Twhere U: From<T>,

source§

fn into(self) -> U

Calls U::from(self).

That is, this conversion is whatever the implementation of From<T> for U chooses to do.

source§

impl<T> ToOwned for Twhere T: Clone,

§

type Owned = T

The resulting type after obtaining ownership.
source§

fn to_owned(&self) -> T

Creates owned data from borrowed data, usually by cloning. Read more
source§

fn clone_into(&self, target: &mut T)

Uses borrowed data to replace owned data, usually by cloning. Read more
source§

impl<T, U> TryFrom<U> for Twhere U: Into<T>,

§

type Error = Infallible

The type returned in the event of a conversion error.
source§

fn try_from(value: U) -> Result<T, <T as TryFrom<U>>::Error>

Performs the conversion.
source§

impl<T, U> TryInto<U> for Twhere U: TryFrom<T>,

§

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.
source§

fn try_into(self) -> Result<U, <U as TryFrom<T>>::Error>

Performs the conversion.