[][src]Struct postgres_parser::sys::ViewStmt

#[repr(C)]pub struct ViewStmt {
    pub type_: NodeTag,
    pub view: *mut RangeVar,
    pub aliases: *mut List,
    pub query: *mut Node,
    pub replace: bool,
    pub options: *mut List,
    pub withCheckOption: ViewCheckOption,
}

Fields

type_: NodeTagview: *mut RangeVaraliases: *mut List

the view to be created

query: *mut Node

target column names

replace: bool

the SELECT query (as a raw parse tree)

options: *mut List

replace an existing view?

withCheckOption: ViewCheckOption

options from WITH clause

Trait Implementations

impl Debug for ViewStmt[src]

impl Default for ViewStmt[src]

impl Eq for ViewStmt[src]

impl Hash for ViewStmt[src]

impl PartialEq<ViewStmt> for ViewStmt[src]

impl StructuralEq for ViewStmt[src]

impl StructuralPartialEq for ViewStmt[src]

Auto Trait Implementations

impl RefUnwindSafe for ViewStmt

impl !Send for ViewStmt

impl !Sync for ViewStmt

impl Unpin for ViewStmt

impl UnwindSafe for ViewStmt

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.