[][src]Struct postgres_parser::sys::PrepareStmt

#[repr(C)]pub struct PrepareStmt {
    pub type_: NodeTag,
    pub name: *mut c_char,
    pub argtypes: *mut List,
    pub query: *mut Node,
}

PREPARE Statement

Fields

type_: NodeTagname: *mut c_charargtypes: *mut List

Name of plan, arbitrary

query: *mut Node

Types of parameters (List of TypeName)

Trait Implementations

impl Debug for PrepareStmt[src]

impl Default for PrepareStmt[src]

impl Eq for PrepareStmt[src]

impl Hash for PrepareStmt[src]

impl PartialEq<PrepareStmt> for PrepareStmt[src]

impl StructuralEq for PrepareStmt[src]

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