Struct sqlparser::ast::ProcedureParam  
source · pub struct ProcedureParam {
    pub name: Ident,
    pub data_type: DataType,
}Fields§
§name: Ident§data_type: DataTypeTrait Implementations§
source§impl Clone for ProcedureParam
 
impl Clone for ProcedureParam
source§fn clone(&self) -> ProcedureParam
 
fn clone(&self) -> ProcedureParam
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 ProcedureParam
 
impl Debug for ProcedureParam
source§impl<'de> Deserialize<'de> for ProcedureParam
 
impl<'de> Deserialize<'de> for ProcedureParam
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 ProcedureParam
 
impl Display for ProcedureParam
source§impl Hash for ProcedureParam
 
impl Hash for ProcedureParam
source§impl Ord for ProcedureParam
 
impl Ord for ProcedureParam
source§fn cmp(&self, other: &ProcedureParam) -> Ordering
 
fn cmp(&self, other: &ProcedureParam) -> 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 ProcedureParam
 
impl PartialEq for ProcedureParam
source§fn eq(&self, other: &ProcedureParam) -> bool
 
fn eq(&self, other: &ProcedureParam) -> bool
This method tests for 
self and other values to be equal, and is used
by ==.source§impl PartialOrd for ProcedureParam
 
impl PartialOrd for ProcedureParam
source§fn partial_cmp(&self, other: &ProcedureParam) -> Option<Ordering>
 
fn partial_cmp(&self, other: &ProcedureParam) -> 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 ProcedureParam
 
impl Serialize for ProcedureParam
source§impl Visit for ProcedureParam
 
impl Visit for ProcedureParam
source§impl VisitMut for ProcedureParam
 
impl VisitMut for ProcedureParam
fn visit<V: VisitorMut>(&mut self, visitor: &mut V) -> ControlFlow<V::Break>
impl Eq for ProcedureParam
impl StructuralEq for ProcedureParam
impl StructuralPartialEq for ProcedureParam
Auto Trait Implementations§
impl RefUnwindSafe for ProcedureParam
impl Send for ProcedureParam
impl Sync for ProcedureParam
impl Unpin for ProcedureParam
impl UnwindSafe for ProcedureParam
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