[][src]Struct pgx_pg_sys::PROCLOCK

#[repr(C)]pub struct PROCLOCK {
    pub tag: PROCLOCKTAG,
    pub groupLeader: *mut PGPROC,
    pub holdMask: LOCKMASK,
    pub releaseMask: LOCKMASK,
    pub lockLink: SHM_QUEUE,
    pub procLink: SHM_QUEUE,
}

Fields

tag: PROCLOCKTAGgroupLeader: *mut PGPROCholdMask: LOCKMASKreleaseMask: LOCKMASKlockLink: SHM_QUEUEprocLink: SHM_QUEUE

Trait Implementations

impl Clone for PROCLOCK[src]

impl Copy for PROCLOCK[src]

impl Debug for PROCLOCK[src]

impl Default for PROCLOCK[src]

Auto Trait Implementations

impl RefUnwindSafe for PROCLOCK

impl !Send for PROCLOCK

impl !Sync for PROCLOCK

impl Unpin for PROCLOCK

impl UnwindSafe for PROCLOCK

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> ToOwned for T where
    T: Clone
[src]

type Owned = T

The resulting type after obtaining ownership.

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.