[][src]Struct postgres_parser::nodes::AlterTableMoveAllStmt

pub struct AlterTableMoveAllStmt {
    pub orig_tablespacename: Option<String>,
    pub objtype: ObjectType,
    pub roles: Option<Vec<Node>>,
    pub new_tablespacename: Option<String>,
    pub nowait: bool,
}

Fields

orig_tablespacename: Option<String>objtype: ObjectTyperoles: Option<Vec<Node>>new_tablespacename: Option<String>nowait: bool

Trait Implementations

impl Debug for AlterTableMoveAllStmt[src]

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

impl Eq for AlterTableMoveAllStmt[src]

impl PartialEq<AlterTableMoveAllStmt> for AlterTableMoveAllStmt[src]

impl Serialize for AlterTableMoveAllStmt[src]

impl StructuralEq for AlterTableMoveAllStmt[src]

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