[][src]Struct postgres_parser::sys::ImportForeignSchemaStmt

#[repr(C)]pub struct ImportForeignSchemaStmt {
    pub type_: NodeTag,
    pub server_name: *mut c_char,
    pub remote_schema: *mut c_char,
    pub local_schema: *mut c_char,
    pub list_type: ImportForeignSchemaType,
    pub table_list: *mut List,
    pub options: *mut List,
}

Fields

type_: NodeTagserver_name: *mut c_charremote_schema: *mut c_char

FDW server name

local_schema: *mut c_char

remote schema name to query

list_type: ImportForeignSchemaType

local schema to create objects in

table_list: *mut List

type of table list

options: *mut List

List of RangeVar

Trait Implementations

impl Debug for ImportForeignSchemaStmt[src]

impl Default for ImportForeignSchemaStmt[src]

impl Eq for ImportForeignSchemaStmt[src]

impl Hash for ImportForeignSchemaStmt[src]

impl PartialEq<ImportForeignSchemaStmt> for ImportForeignSchemaStmt[src]

impl StructuralEq for ImportForeignSchemaStmt[src]

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