[][src]Struct postgres_parser::sys::ExplainStmt

#[repr(C)]pub struct ExplainStmt {
    pub type_: NodeTag,
    pub query: *mut Node,
    pub options: *mut List,
}

Explain Statement

The "query" field is initially a raw parse tree, and is converted to a Query node during parse analysis. Note that rewriting and planning of the query are always postponed until execution.

Fields

type_: NodeTagquery: *mut Nodeoptions: *mut List

the query (see comments above)

Trait Implementations

impl Debug for ExplainStmt[src]

impl Default for ExplainStmt[src]

impl Eq for ExplainStmt[src]

impl Hash for ExplainStmt[src]

impl PartialEq<ExplainStmt> for ExplainStmt[src]

impl StructuralEq for ExplainStmt[src]

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