[][src]Struct postgres_parser::sys::LockStmt

#[repr(C)]pub struct LockStmt {
    pub type_: NodeTag,
    pub relations: *mut List,
    pub mode: c_int,
    pub nowait: bool,
}

LOCK Statement

Fields

type_: NodeTagrelations: *mut Listmode: c_int

relations to lock

nowait: bool

lock mode

Trait Implementations

impl Debug for LockStmt[src]

impl Default for LockStmt[src]

impl Eq for LockStmt[src]

impl Hash for LockStmt[src]

impl PartialEq<LockStmt> for LockStmt[src]

impl StructuralEq for LockStmt[src]

impl StructuralPartialEq for LockStmt[src]

Auto Trait Implementations

impl RefUnwindSafe for LockStmt

impl !Send for LockStmt

impl !Sync for LockStmt

impl Unpin for LockStmt

impl UnwindSafe for LockStmt

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.