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<'de> Deserialize<'de> for SequenceOptions
impl<'de> Deserialize<'de> for SequenceOptions
source§fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where __D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
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<SequenceOptions> for SequenceOptions
impl PartialEq<SequenceOptions> 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<SequenceOptions> for SequenceOptions
impl PartialOrd<SequenceOptions> 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 more