Enum sqlparser::ast::FunctionArg  
source · pub enum FunctionArg {
    Named {
        name: Ident,
        arg: FunctionArgExpr,
    },
    Unnamed(FunctionArgExpr),
}Variants§
Trait Implementations§
source§impl Clone for FunctionArg
 
impl Clone for FunctionArg
source§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 moresource§impl Debug for FunctionArg
 
impl Debug for FunctionArg
source§impl<'de> Deserialize<'de> for FunctionArg
 
impl<'de> Deserialize<'de> for FunctionArg
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 FunctionArg
 
impl Display for FunctionArg
source§impl Hash for FunctionArg
 
impl Hash for FunctionArg
source§impl Ord for FunctionArg
 
impl Ord for FunctionArg
source§fn cmp(&self, other: &FunctionArg) -> Ordering
 
fn cmp(&self, other: &FunctionArg) -> 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 FunctionArg
 
impl PartialEq for FunctionArg
source§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 ==.source§impl PartialOrd for FunctionArg
 
impl PartialOrd for FunctionArg
source§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 moresource§impl Serialize for FunctionArg
 
impl Serialize for FunctionArg
source§impl Visit for FunctionArg
 
impl Visit for FunctionArg
source§impl VisitMut for FunctionArg
 
impl VisitMut for FunctionArg
fn visit<V: VisitorMut>(&mut self, visitor: &mut V) -> ControlFlow<V::Break>
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