[][src]Struct postgres_parser::sys::LockingClause

#[repr(C)]pub struct LockingClause {
    pub type_: NodeTag,
    pub lockedRels: *mut List,
    pub strength: LockClauseStrength,
    pub waitPolicy: LockWaitPolicy,
}

LockingClause raw representation of FOR [NO KEY] UPDATE/[KEY] SHARE options

Note: lockedRels == NIL means "all relations in query". Otherwise it is a list of RangeVar nodes. (We use RangeVar mainly because it carries a location field currently, parse analysis insists on unqualified names in LockingClause.)

Fields

type_: NodeTaglockedRels: *mut Liststrength: LockClauseStrength

FOR [KEY] UPDATE/SHARE relations

waitPolicy: LockWaitPolicy

Trait Implementations

impl Debug for LockingClause[src]

impl Default for LockingClause[src]

impl Eq for LockingClause[src]

impl Hash for LockingClause[src]

impl PartialEq<LockingClause> for LockingClause[src]

impl StructuralEq for LockingClause[src]

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