Enum gluesql::core::sqlparser::ast::FunctionArg
pub enum FunctionArg {
Named {
name: Ident,
arg: FunctionArgExpr,
},
Unnamed(FunctionArgExpr),
}Variants§
Trait Implementations§
§impl Clone for FunctionArg
impl Clone for FunctionArg
§fn clone(&self) -> FunctionArg
fn clone(&self) -> FunctionArg
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 FunctionArg
impl Debug for FunctionArg
§impl<'de> Deserialize<'de> for FunctionArg
impl<'de> Deserialize<'de> for FunctionArg
§fn deserialize<__D>(
__deserializer: __D
) -> Result<FunctionArg, <__D as Deserializer<'de>>::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>( __deserializer: __D ) -> Result<FunctionArg, <__D as Deserializer<'de>>::Error>where __D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
§impl Display for FunctionArg
impl Display for FunctionArg
§impl Hash for FunctionArg
impl Hash for FunctionArg
§impl Ord for FunctionArg
impl Ord for FunctionArg
§impl PartialEq<FunctionArg> for FunctionArg
impl PartialEq<FunctionArg> for FunctionArg
§fn eq(&self, other: &FunctionArg) -> bool
fn eq(&self, other: &FunctionArg) -> bool
This method tests for
self and other values to be equal, and is used
by ==.§impl PartialOrd<FunctionArg> for FunctionArg
impl PartialOrd<FunctionArg> for FunctionArg
§fn partial_cmp(&self, other: &FunctionArg) -> Option<Ordering>
fn partial_cmp(&self, other: &FunctionArg) -> 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 FunctionArg
impl Serialize for FunctionArg
§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 FunctionArg
impl StructuralEq for FunctionArg
impl StructuralPartialEq for FunctionArg
Auto Trait Implementations§
impl RefUnwindSafe for FunctionArg
impl Send for FunctionArg
impl Sync for FunctionArg
impl Unpin for FunctionArg
impl UnwindSafe for FunctionArg
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.