Struct gluesql::core::sqlparser::ast::ReplaceSelectElement
pub struct ReplaceSelectElement {
pub expr: Expr,
pub column_name: Ident,
pub as_keyword: bool,
}Expand description
Syntax
<expr> [AS] <column_name>
Fields§
§expr: Expr§column_name: Ident§as_keyword: boolTrait Implementations§
§impl Clone for ReplaceSelectElement
impl Clone for ReplaceSelectElement
§fn clone(&self) -> ReplaceSelectElement
fn clone(&self) -> ReplaceSelectElement
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 more§impl Debug for ReplaceSelectElement
impl Debug for ReplaceSelectElement
§impl<'de> Deserialize<'de> for ReplaceSelectElement
impl<'de> Deserialize<'de> for ReplaceSelectElement
§fn deserialize<__D>(
__deserializer: __D
) -> Result<ReplaceSelectElement, <__D as Deserializer<'de>>::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>( __deserializer: __D ) -> Result<ReplaceSelectElement, <__D as Deserializer<'de>>::Error>where __D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
§impl Display for ReplaceSelectElement
impl Display for ReplaceSelectElement
§impl Hash for ReplaceSelectElement
impl Hash for ReplaceSelectElement
§impl Ord for ReplaceSelectElement
impl Ord for ReplaceSelectElement
§fn cmp(&self, other: &ReplaceSelectElement) -> Ordering
fn cmp(&self, other: &ReplaceSelectElement) -> 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
§impl PartialEq for ReplaceSelectElement
impl PartialEq for ReplaceSelectElement
§fn eq(&self, other: &ReplaceSelectElement) -> bool
fn eq(&self, other: &ReplaceSelectElement) -> bool
This method tests for
self and other values to be equal, and is used
by ==.§impl PartialOrd for ReplaceSelectElement
impl PartialOrd for ReplaceSelectElement
§fn partial_cmp(&self, other: &ReplaceSelectElement) -> Option<Ordering>
fn partial_cmp(&self, other: &ReplaceSelectElement) -> 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§impl Serialize for ReplaceSelectElement
impl Serialize for ReplaceSelectElement
§fn serialize<__S>(
&self,
__serializer: __S
) -> Result<<__S as Serializer>::Ok, <__S as Serializer>::Error>where
__S: Serializer,
fn serialize<__S>( &self, __serializer: __S ) -> Result<<__S as Serializer>::Ok, <__S as Serializer>::Error>where __S: Serializer,
Serialize this value into the given Serde serializer. Read more
impl Eq for ReplaceSelectElement
impl StructuralEq for ReplaceSelectElement
impl StructuralPartialEq for ReplaceSelectElement
Auto Trait Implementations§
impl RefUnwindSafe for ReplaceSelectElement
impl Send for ReplaceSelectElement
impl Sync for ReplaceSelectElement
impl Unpin for ReplaceSelectElement
impl UnwindSafe for ReplaceSelectElement
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
source§impl<Q, K> Equivalent<K> for Qwhere
Q: Eq + ?Sized,
K: Borrow<Q> + ?Sized,
impl<Q, K> Equivalent<K> for Qwhere Q: Eq + ?Sized, K: Borrow<Q> + ?Sized,
source§fn equivalent(&self, key: &K) -> bool
fn equivalent(&self, key: &K) -> bool
Compare self to
key and return true if they are equal.