[][src]Struct pgx::shmem::PgSharedMem

pub struct PgSharedMem {}

This struct contains methods to drive creation of types in shared memory

Implementations

impl PgSharedMem[src]

pub fn pg_init_locked<T: Default + PGXSharedMemory>(lock: &PgLwLock<T>)[src]

Must be run from PG_init, use for types which are guarded by a LWLock

pub fn pg_init_atomic<T: Atomic + Default>(_atomic: &PgAtomic<T>)[src]

Must be run from _PG_init for atomics

pub fn shmem_init_locked<T: Default + PGXSharedMemory>(lock: &PgLwLock<T>)[src]

Must be run from the shared memory init hook, use for types which are guarded by a LWLock

pub fn shmem_init_atomic<T: Atomic + Default>(atomic: &PgAtomic<T>)[src]

Must be run from the shared memory init hook, use for rust atomics behind PgAtomic

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> Same<T> for T

type Output = T

Should always be Self

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.