[][src]Struct postgres_parser::sys::CreateSeqStmt

#[repr(C)]pub struct CreateSeqStmt {
    pub type_: NodeTag,
    pub sequence: *mut RangeVar,
    pub options: *mut List,
    pub ownerId: Oid,
    pub for_identity: bool,
    pub if_not_exists: bool,
}

{Create|Alter} SEQUENCE Statement

Fields

type_: NodeTagsequence: *mut RangeVaroptions: *mut List

the sequence to create

ownerId: Oidfor_identity: bool

ID of owner, or InvalidOid for default

if_not_exists: bool

Trait Implementations

impl Debug for CreateSeqStmt[src]

impl Default for CreateSeqStmt[src]

impl Eq for CreateSeqStmt[src]

impl Hash for CreateSeqStmt[src]

impl PartialEq<CreateSeqStmt> for CreateSeqStmt[src]

impl StructuralEq for CreateSeqStmt[src]

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