[][src]Struct postgres_parser::sys::TransactionStmt

#[repr(C)]pub struct TransactionStmt {
    pub type_: NodeTag,
    pub kind: TransactionStmtKind,
    pub options: *mut List,
    pub savepoint_name: *mut c_char,
    pub gid: *mut c_char,
    pub chain: bool,
}

Fields

type_: NodeTagkind: TransactionStmtKindoptions: *mut List

see above

savepoint_name: *mut c_char

for BEGIN/START commands

gid: *mut c_char

for savepoint commands

chain: bool

for twophasecommit related commands

Trait Implementations

impl Debug for TransactionStmt[src]

impl Default for TransactionStmt[src]

impl Eq for TransactionStmt[src]

impl Hash for TransactionStmt[src]

impl PartialEq<TransactionStmt> for TransactionStmt[src]

impl StructuralEq for TransactionStmt[src]

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