[][src]Struct postgres_parser::nodes::VacuumRelation

pub struct VacuumRelation {
    pub relation: Option<Box<RangeVar>>,
    pub oid: Oid,
    pub va_cols: Option<Vec<Node>>,
}

Info about a single target table of VACUUM/ANALYZE.

If the OID field is set, it always identifies the table to process. Then the relation field can be NULL; if it isn't, it's used only to report failure to open/lock the relation.

Fields

relation: Option<Box<RangeVar>>oid: Oidva_cols: Option<Vec<Node>>

Trait Implementations

impl Debug for VacuumRelation[src]

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

impl Eq for VacuumRelation[src]

impl PartialEq<VacuumRelation> for VacuumRelation[src]

impl Serialize for VacuumRelation[src]

impl StructuralEq for VacuumRelation[src]

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