[][src]Struct postgres_parser::sys::CreateFunctionStmt

#[repr(C)]pub struct CreateFunctionStmt {
    pub type_: NodeTag,
    pub is_procedure: bool,
    pub replace: bool,
    pub funcname: *mut List,
    pub parameters: *mut List,
    pub returnType: *mut TypeName,
    pub options: *mut List,
}

Create Function Statement

Fields

type_: NodeTagis_procedure: boolreplace: bool

it's really CREATE PROCEDURE

funcname: *mut List

T => replace if already exists

parameters: *mut List

qualified name of function to create

returnType: *mut TypeName

a list of FunctionParameter

options: *mut List

the return type

Trait Implementations

impl Debug for CreateFunctionStmt[src]

impl Default for CreateFunctionStmt[src]

impl Eq for CreateFunctionStmt[src]

impl Hash for CreateFunctionStmt[src]

impl PartialEq<CreateFunctionStmt> for CreateFunctionStmt[src]

impl StructuralEq for CreateFunctionStmt[src]

impl StructuralPartialEq for CreateFunctionStmt[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.