Struct pgx_pg_sys::LOCK[][src]

#[repr(C)]
pub struct LOCK { pub tag: LOCKTAG, pub grantMask: LOCKMASK, pub waitMask: LOCKMASK, pub procLocks: SHM_QUEUE, pub waitProcs: PROC_QUEUE, pub requested: [c_int; 10], pub nRequested: c_int, pub granted: [c_int; 10], pub nGranted: c_int, }

Fields

tag: LOCKTAGgrantMask: LOCKMASKwaitMask: LOCKMASKprocLocks: SHM_QUEUEwaitProcs: PROC_QUEUErequested: [c_int; 10]nRequested: c_intgranted: [c_int; 10]nGranted: c_int

Trait Implementations

impl Clone for LOCK[src]

impl Copy for LOCK[src]

impl Debug for LOCK[src]

impl Default for LOCK[src]

Auto Trait Implementations

impl RefUnwindSafe for LOCK

impl !Send for LOCK

impl !Sync for LOCK

impl Unpin for LOCK

impl UnwindSafe for LOCK

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.