[][src]Struct postgres_parser::sys::CreatePLangStmt

#[repr(C)]pub struct CreatePLangStmt {
    pub type_: NodeTag,
    pub replace: bool,
    pub plname: *mut c_char,
    pub plhandler: *mut List,
    pub plinline: *mut List,
    pub plvalidator: *mut List,
    pub pltrusted: bool,
}

Create LANGUAGE Statements

Fields

type_: NodeTagreplace: boolplname: *mut c_char

T => replace if already exists

plhandler: *mut List

PL name

plinline: *mut List

PL call handler function (qual. name)

plvalidator: *mut List

optional inline function (qual. name)

pltrusted: bool

optional validator function (qual. name)

Trait Implementations

impl Debug for CreatePLangStmt[src]

impl Default for CreatePLangStmt[src]

impl Eq for CreatePLangStmt[src]

impl Hash for CreatePLangStmt[src]

impl PartialEq<CreatePLangStmt> for CreatePLangStmt[src]

impl StructuralEq for CreatePLangStmt[src]

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