Struct sqlparser::ast::IdentWithAlias
source · pub struct IdentWithAlias {
pub ident: Ident,
pub alias: Ident,
}
Expand description
Fields§
§ident: Ident
§alias: Ident
Trait Implementations§
source§impl Clone for IdentWithAlias
impl Clone for IdentWithAlias
source§fn clone(&self) -> IdentWithAlias
fn clone(&self) -> IdentWithAlias
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 IdentWithAlias
impl Debug for IdentWithAlias
source§impl Display for IdentWithAlias
impl Display for IdentWithAlias
source§impl Hash for IdentWithAlias
impl Hash for IdentWithAlias
source§impl Ord for IdentWithAlias
impl Ord for IdentWithAlias
source§fn cmp(&self, other: &IdentWithAlias) -> Ordering
fn cmp(&self, other: &IdentWithAlias) -> 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 IdentWithAlias
impl PartialEq for IdentWithAlias
source§fn eq(&self, other: &IdentWithAlias) -> bool
fn eq(&self, other: &IdentWithAlias) -> bool
This method tests for
self
and other
values to be equal, and is used
by ==
.source§impl PartialOrd for IdentWithAlias
impl PartialOrd for IdentWithAlias
source§fn partial_cmp(&self, other: &IdentWithAlias) -> Option<Ordering>
fn partial_cmp(&self, other: &IdentWithAlias) -> 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 IdentWithAlias
impl StructuralEq for IdentWithAlias
impl StructuralPartialEq for IdentWithAlias
Auto Trait Implementations§
impl RefUnwindSafe for IdentWithAlias
impl Send for IdentWithAlias
impl Sync for IdentWithAlias
impl Unpin for IdentWithAlias
impl UnwindSafe for IdentWithAlias
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