Struct sqlparser::ast::ExceptSelectItem  
source · pub struct ExceptSelectItem {
    pub first_element: Ident,
    pub additional_elements: Vec<Ident>,
}Expand description
Fields§
§first_element: IdentFirst guaranteed column.
additional_elements: Vec<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 for ExceptSelectItem
 
impl PartialEq 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 for ExceptSelectItem
 
impl PartialOrd 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 moresource§impl Serialize for ExceptSelectItem
 
impl Serialize for ExceptSelectItem
source§impl Visit for ExceptSelectItem
 
impl Visit for ExceptSelectItem
source§impl VisitMut for ExceptSelectItem
 
impl VisitMut for ExceptSelectItem
fn visit<V: VisitorMut>(&mut self, visitor: &mut V) -> ControlFlow<V::Break>
impl Eq for ExceptSelectItem
impl StructuralEq for ExceptSelectItem
impl StructuralPartialEq for ExceptSelectItem
Auto Trait Implementations§
impl RefUnwindSafe for ExceptSelectItem
impl Send for ExceptSelectItem
impl Sync for ExceptSelectItem
impl Unpin for ExceptSelectItem
impl UnwindSafe for ExceptSelectItem
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