Struct pgx_pg_sys::CopyStmt[][src]

#[repr(C)]
pub struct CopyStmt { pub type_: NodeTag, pub relation: *mut RangeVar, pub query: *mut Node, pub attlist: *mut List, pub is_from: bool, pub is_program: bool, pub filename: *mut c_char, pub options: *mut List, pub whereClause: *mut Node, }

Fields

type_: NodeTagrelation: *mut RangeVarquery: *mut Nodeattlist: *mut Listis_from: boolis_program: boolfilename: *mut c_charoptions: *mut ListwhereClause: *mut Node

Trait Implementations

impl Clone for CopyStmt[src]

impl Copy for CopyStmt[src]

impl Debug for CopyStmt[src]

impl Default for CopyStmt[src]

impl Display for CopyStmt[src]

impl PgNode for CopyStmt[src]

type NodeType = CopyStmt

Auto Trait Implementations

impl RefUnwindSafe for CopyStmt

impl !Send for CopyStmt

impl !Sync for CopyStmt

impl Unpin for CopyStmt

impl UnwindSafe for CopyStmt

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> ToOwned for T where
    T: Clone
[src]

type Owned = T

The resulting type after obtaining ownership.

impl<T> ToString for T where
    T: Display + ?Sized
[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.