Struct pgx_pg_sys::ParallelContext[][src]

#[repr(C)]
pub struct ParallelContext {
Show fields pub node: dlist_node, pub subid: SubTransactionId, pub nworkers: c_int, pub nworkers_to_launch: c_int, pub nworkers_launched: c_int, pub library_name: *mut c_char, pub function_name: *mut c_char, pub error_context_stack: *mut ErrorContextCallback, pub estimator: shm_toc_estimator, pub seg: *mut dsm_segment, pub private_memory: *mut c_void, pub toc: *mut shm_toc, pub worker: *mut ParallelWorkerInfo, pub nknown_attached_workers: c_int, pub known_attached_workers: *mut bool,
}

Fields

node: dlist_nodesubid: SubTransactionIdnworkers: c_intnworkers_to_launch: c_intnworkers_launched: c_intlibrary_name: *mut c_charfunction_name: *mut c_charerror_context_stack: *mut ErrorContextCallbackestimator: shm_toc_estimatorseg: *mut dsm_segmentprivate_memory: *mut c_voidtoc: *mut shm_tocworker: *mut ParallelWorkerInfonknown_attached_workers: c_intknown_attached_workers: *mut bool

Trait Implementations

impl Clone for ParallelContext[src]

impl Copy for ParallelContext[src]

impl Debug for ParallelContext[src]

impl Default for ParallelContext[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> 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.