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 for MinMaxValue
 
impl PartialEq 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 for MinMaxValue
 
impl PartialOrd 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 moresource§impl Serialize for MinMaxValue
 
impl Serialize for MinMaxValue
source§impl Visit for MinMaxValue
 
impl Visit for MinMaxValue
source§impl VisitMut for MinMaxValue
 
impl VisitMut for MinMaxValue
fn visit<V: VisitorMut>(&mut self, visitor: &mut V) -> ControlFlow<V::Break>
impl Eq for MinMaxValue
impl StructuralEq for MinMaxValue
impl StructuralPartialEq for MinMaxValue
Auto Trait Implementations§
impl RefUnwindSafe for MinMaxValue
impl Send for MinMaxValue
impl Sync for MinMaxValue
impl Unpin for MinMaxValue
impl UnwindSafe for MinMaxValue
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