Enum sqlparser::ast::SequenceOptions
source · pub enum SequenceOptions {
IncrementBy(Expr, bool),
MinValue(MinMaxValue),
MaxValue(MinMaxValue),
StartWith(Expr, bool),
Cache(Expr),
Cycle(bool),
}
Expand description
Can use to describe options in create sequence or table column type identity
[ INCREMENT [ BY ] increment ]
[ MINVALUE minvalue | NO MINVALUE ] [ MAXVALUE maxvalue | NO MAXVALUE ]
[ START [ WITH ] start ] [ CACHE cache ] [ [ NO ] CYCLE ]
Variants§
IncrementBy(Expr, bool)
MinValue(MinMaxValue)
MaxValue(MinMaxValue)
StartWith(Expr, bool)
Cache(Expr)
Cycle(bool)
Trait Implementations§
source§impl Clone for SequenceOptions
impl Clone for SequenceOptions
source§fn clone(&self) -> SequenceOptions
fn clone(&self) -> SequenceOptions
Returns a copy of the value. Read more
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source
. Read moresource§impl Debug for SequenceOptions
impl Debug for SequenceOptions
source§impl Display for SequenceOptions
impl Display for SequenceOptions
source§impl Hash for SequenceOptions
impl Hash for SequenceOptions
source§impl Ord for SequenceOptions
impl Ord for SequenceOptions
source§fn cmp(&self, other: &SequenceOptions) -> Ordering
fn cmp(&self, other: &SequenceOptions) -> Ordering
1.21.0 · source§fn max(self, other: Self) -> Selfwhere
Self: Sized,
fn max(self, other: Self) -> Selfwhere Self: Sized,
Compares and returns the maximum of two values. Read more
source§impl PartialEq for SequenceOptions
impl PartialEq for SequenceOptions
source§fn eq(&self, other: &SequenceOptions) -> bool
fn eq(&self, other: &SequenceOptions) -> bool
This method tests for
self
and other
values to be equal, and is used
by ==
.source§impl PartialOrd for SequenceOptions
impl PartialOrd for SequenceOptions
source§fn partial_cmp(&self, other: &SequenceOptions) -> Option<Ordering>
fn partial_cmp(&self, other: &SequenceOptions) -> Option<Ordering>
1.0.0 · source§fn le(&self, other: &Rhs) -> bool
fn le(&self, other: &Rhs) -> bool
This method tests less than or equal to (for
self
and other
) and is used by the <=
operator. Read moreimpl Eq for SequenceOptions
impl StructuralEq for SequenceOptions
impl StructuralPartialEq for SequenceOptions
Auto Trait Implementations§
impl RefUnwindSafe for SequenceOptions
impl Send for SequenceOptions
impl Sync for SequenceOptions
impl Unpin for SequenceOptions
impl UnwindSafe for SequenceOptions
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