Enum sqlparser::ast::ExcludeSelectItem
source · pub enum ExcludeSelectItem {
Single(Ident),
Multiple(Vec<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 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 for ExcludeSelectItem
impl PartialEq 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 for ExcludeSelectItem
impl PartialOrd 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 moreimpl Eq for ExcludeSelectItem
impl StructuralEq for ExcludeSelectItem
impl StructuralPartialEq for ExcludeSelectItem
Auto Trait Implementations§
impl RefUnwindSafe for ExcludeSelectItem
impl Send for ExcludeSelectItem
impl Sync for ExcludeSelectItem
impl Unpin for ExcludeSelectItem
impl UnwindSafe for ExcludeSelectItem
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