[][src]Struct postgres_parser::sys::AlterObjectSchemaStmt

#[repr(C)]pub struct AlterObjectSchemaStmt {
    pub type_: NodeTag,
    pub objectType: ObjectType,
    pub relation: *mut RangeVar,
    pub object: *mut Node,
    pub newschema: *mut c_char,
    pub missing_ok: bool,
}

ALTER object SET SCHEMA Statement

Fields

type_: NodeTagobjectType: ObjectTyperelation: *mut RangeVar

OBJECT_TABLE, OBJECT_TYPE, etc

object: *mut Node

in case it's a table

newschema: *mut c_char

in case it's some other object

missing_ok: bool

the new schema

Trait Implementations

impl Debug for AlterObjectSchemaStmt[src]

impl Default for AlterObjectSchemaStmt[src]

impl Eq for AlterObjectSchemaStmt[src]

impl Hash for AlterObjectSchemaStmt[src]

impl PartialEq<AlterObjectSchemaStmt> for AlterObjectSchemaStmt[src]

impl StructuralEq for AlterObjectSchemaStmt[src]

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