[][src]Struct postgres_parser::sys::ReindexStmt

#[repr(C)]pub struct ReindexStmt {
    pub type_: NodeTag,
    pub kind: ReindexObjectType,
    pub relation: *mut RangeVar,
    pub name: *const c_char,
    pub options: c_int,
    pub concurrent: bool,
}

Fields

type_: NodeTagkind: ReindexObjectTyperelation: *mut RangeVar

REINDEX_OBJECT_INDEX, REINDEX_OBJECT_TABLE, etc.

name: *const c_char

Table or index to reindex

options: c_int

name of database to reindex

concurrent: bool

Reindex options flags

Trait Implementations

impl Debug for ReindexStmt[src]

impl Default for ReindexStmt[src]

impl Eq for ReindexStmt[src]

impl Hash for ReindexStmt[src]

impl PartialEq<ReindexStmt> for ReindexStmt[src]

impl StructuralEq for ReindexStmt[src]

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