[][src]Struct postgres_parser::sys::FunctionParameter

#[repr(C)]pub struct FunctionParameter {
    pub type_: NodeTag,
    pub name: *mut c_char,
    pub argType: *mut TypeName,
    pub mode: FunctionParameterMode,
    pub defexpr: *mut Node,
}

Fields

type_: NodeTagname: *mut c_charargType: *mut TypeName

parameter name, or NULL if not given

mode: FunctionParameterMode

TypeName for parameter type

defexpr: *mut Node

IN/OUT/etc

Trait Implementations

impl Debug for FunctionParameter[src]

impl Default for FunctionParameter[src]

impl Eq for FunctionParameter[src]

impl Hash for FunctionParameter[src]

impl PartialEq<FunctionParameter> for FunctionParameter[src]

impl StructuralEq for FunctionParameter[src]

impl StructuralPartialEq for FunctionParameter[src]

Auto Trait Implementations

Blanket Implementations

impl<T> Any for T where
    T: 'static + ?Sized
[src]

impl<T> Borrow<T> for T where
    T: ?Sized
[src]

impl<T> BorrowMut<T> for T where
    T: ?Sized
[src]

impl<T> From<T> for T[src]

impl<T, U> Into<U> for T where
    U: From<T>, 
[src]

impl<T, U> TryFrom<U> for T where
    U: Into<T>, 
[src]

type Error = Infallible

The type returned in the event of a conversion error.

impl<T, U> TryInto<U> for T where
    U: TryFrom<T>, 
[src]

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.