Struct sqlparser::ast::ExceptSelectItem
source · pub struct ExceptSelectItem {
pub first_element: Located<Ident>,
pub additional_elements: Vec<Located<Ident>>,
}
Expand description
Fields§
§first_element: Located<Ident>
First guaranteed column.
additional_elements: Vec<Located<Ident>>
Additional columns. This list can be empty.
Trait Implementations§
source§impl Clone for ExceptSelectItem
impl Clone for ExceptSelectItem
source§fn clone(&self) -> ExceptSelectItem
fn clone(&self) -> ExceptSelectItem
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 ExceptSelectItem
impl Debug for ExceptSelectItem
source§impl<'de> Deserialize<'de> for ExceptSelectItem
impl<'de> Deserialize<'de> for ExceptSelectItem
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 ExceptSelectItem
impl Display for ExceptSelectItem
source§impl Hash for ExceptSelectItem
impl Hash for ExceptSelectItem
source§impl Ord for ExceptSelectItem
impl Ord for ExceptSelectItem
source§fn cmp(&self, other: &ExceptSelectItem) -> Ordering
fn cmp(&self, other: &ExceptSelectItem) -> 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<ExceptSelectItem> for ExceptSelectItem
impl PartialEq<ExceptSelectItem> for ExceptSelectItem
source§fn eq(&self, other: &ExceptSelectItem) -> bool
fn eq(&self, other: &ExceptSelectItem) -> bool
This method tests for
self
and other
values to be equal, and is used
by ==
.source§impl PartialOrd<ExceptSelectItem> for ExceptSelectItem
impl PartialOrd<ExceptSelectItem> for ExceptSelectItem
source§fn partial_cmp(&self, other: &ExceptSelectItem) -> Option<Ordering>
fn partial_cmp(&self, other: &ExceptSelectItem) -> 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