enum Token {
Show 22 variants
SimpleType(DataType),
Timestamp,
Time32,
Time64,
Duration,
Interval,
FixedSizeBinary,
Decimal128,
Decimal256,
Dictionary,
TimeUnit(TimeUnit),
IntervalUnit(IntervalUnit),
LParen,
RParen,
Comma,
Some,
None,
Integer(i64),
DoubleQuotedString(String),
List,
LargeList,
FixedSizeList,
}
Expand description
Grammar is
Variants§
SimpleType(DataType)
Timestamp
Time32
Time64
Duration
Interval
FixedSizeBinary
Decimal128
Decimal256
Dictionary
TimeUnit(TimeUnit)
IntervalUnit(IntervalUnit)
LParen
RParen
Comma
Some
None
Integer(i64)
DoubleQuotedString(String)
List
LargeList
FixedSizeList
Trait Implementations§
impl StructuralPartialEq for Token
Auto Trait Implementations§
impl Freeze for Token
impl RefUnwindSafe for Token
impl Send for Token
impl Sync for Token
impl Unpin for Token
impl UnwindSafe for Token
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