[][src]Struct postgres_parser::nodes::LockingClause

pub struct LockingClause {
    pub lockedRels: Option<Vec<Node>>,
    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

lockedRels: Option<Vec<Node>>strength: LockClauseStrengthwaitPolicy: LockWaitPolicy

Trait Implementations

impl Debug for LockingClause[src]

impl<'de> Deserialize<'de> for LockingClause[src]

impl Eq for LockingClause[src]

impl PartialEq<LockingClause> for LockingClause[src]

impl Serialize 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> DeserializeOwned for T where
    T: for<'de> Deserialize<'de>, 
[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.