Enum sqlparser::ast::MinMaxValue
source · pub enum MinMaxValue {
Empty,
None,
Some(Expr),
}
Expand description
Can use to describe options in create sequence or table column type identity [ MINVALUE minvalue | NO MINVALUE ] [ MAXVALUE maxvalue | NO MAXVALUE ]
Variants§
Trait Implementations§
source§impl Clone for MinMaxValue
impl Clone for MinMaxValue
source§fn clone(&self) -> MinMaxValue
fn clone(&self) -> MinMaxValue
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 MinMaxValue
impl Debug for MinMaxValue
source§impl<'de> Deserialize<'de> for MinMaxValue
impl<'de> Deserialize<'de> for MinMaxValue
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 Hash for MinMaxValue
impl Hash for MinMaxValue
source§impl Ord for MinMaxValue
impl Ord for MinMaxValue
source§fn cmp(&self, other: &MinMaxValue) -> Ordering
fn cmp(&self, other: &MinMaxValue) -> 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<MinMaxValue> for MinMaxValue
impl PartialEq<MinMaxValue> for MinMaxValue
source§fn eq(&self, other: &MinMaxValue) -> bool
fn eq(&self, other: &MinMaxValue) -> bool
This method tests for
self
and other
values to be equal, and is used
by ==
.source§impl PartialOrd<MinMaxValue> for MinMaxValue
impl PartialOrd<MinMaxValue> for MinMaxValue
source§fn partial_cmp(&self, other: &MinMaxValue) -> Option<Ordering>
fn partial_cmp(&self, other: &MinMaxValue) -> 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