[][src]Struct postgres_parser::nodes::VacuumStmt

pub struct VacuumStmt {
    pub options: Option<Vec<Node>>,
    pub rels: Option<Vec<Node>>,
    pub is_vacuumcmd: bool,
}

Vacuum and Analyze Statements

Even though these are nominally two statements, it's convenient to use just one node type for both.

Fields

options: Option<Vec<Node>>rels: Option<Vec<Node>>is_vacuumcmd: bool

Trait Implementations

impl Debug for VacuumStmt[src]

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

impl Eq for VacuumStmt[src]

impl PartialEq<VacuumStmt> for VacuumStmt[src]

impl Serialize for VacuumStmt[src]

impl StructuralEq for VacuumStmt[src]

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