Enum sqlparser::ast::ExcludeSelectItem
source · pub enum ExcludeSelectItem {
Single(Located<Ident>),
Multiple(Vec<Located<Ident>>),
}
Expand description
Variants§
Trait Implementations§
source§impl Clone for ExcludeSelectItem
impl Clone for ExcludeSelectItem
source§fn clone(&self) -> ExcludeSelectItem
fn clone(&self) -> ExcludeSelectItem
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 ExcludeSelectItem
impl Debug for ExcludeSelectItem
source§impl<'de> Deserialize<'de> for ExcludeSelectItem
impl<'de> Deserialize<'de> for ExcludeSelectItem
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 ExcludeSelectItem
impl Display for ExcludeSelectItem
source§impl Hash for ExcludeSelectItem
impl Hash for ExcludeSelectItem
source§impl Ord for ExcludeSelectItem
impl Ord for ExcludeSelectItem
source§fn cmp(&self, other: &ExcludeSelectItem) -> Ordering
fn cmp(&self, other: &ExcludeSelectItem) -> 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<ExcludeSelectItem> for ExcludeSelectItem
impl PartialEq<ExcludeSelectItem> for ExcludeSelectItem
source§fn eq(&self, other: &ExcludeSelectItem) -> bool
fn eq(&self, other: &ExcludeSelectItem) -> bool
This method tests for
self
and other
values to be equal, and is used
by ==
.source§impl PartialOrd<ExcludeSelectItem> for ExcludeSelectItem
impl PartialOrd<ExcludeSelectItem> for ExcludeSelectItem
source§fn partial_cmp(&self, other: &ExcludeSelectItem) -> Option<Ordering>
fn partial_cmp(&self, other: &ExcludeSelectItem) -> 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