[][src]Enum postgres_parser::sys::ImportForeignSchemaType

#[repr(u32)]pub enum ImportForeignSchemaType {
    FDW_IMPORT_SCHEMA_ALL,
    FDW_IMPORT_SCHEMA_LIMIT_TO,
    FDW_IMPORT_SCHEMA_EXCEPT,
}

Import Foreign Schema Statement

Variants

FDW_IMPORT_SCHEMA_ALL
FDW_IMPORT_SCHEMA_LIMIT_TO

all relations wanted

FDW_IMPORT_SCHEMA_EXCEPT

include only listed tables in import

Trait Implementations

impl Clone for ImportForeignSchemaType[src]

impl Copy for ImportForeignSchemaType[src]

impl Debug for ImportForeignSchemaType[src]

impl<'de> Deserialize<'de> for ImportForeignSchemaType[src]

impl Eq for ImportForeignSchemaType[src]

impl Hash for ImportForeignSchemaType[src]

impl PartialEq<ImportForeignSchemaType> for ImportForeignSchemaType[src]

impl Serialize for ImportForeignSchemaType[src]

impl StructuralEq for ImportForeignSchemaType[src]

impl StructuralPartialEq for ImportForeignSchemaType[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> DeserializeOwned for T where
    T: for<'de> Deserialize<'de>, 
[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, 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.