Struct sqlparser::ast::IdentWithAlias
source · pub struct IdentWithAlias {
pub ident: Located<Ident>,
pub alias: Located<Ident>,
}
Expand description
Fields§
§ident: Located<Ident>
§alias: Located<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<'de> Deserialize<'de> for IdentWithAlias
impl<'de> Deserialize<'de> for IdentWithAlias
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 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<IdentWithAlias> for IdentWithAlias
impl PartialEq<IdentWithAlias> 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<IdentWithAlias> for IdentWithAlias
impl PartialOrd<IdentWithAlias> 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 more