[][src]Struct pgx_pg_sys::BackgroundWorker

#[repr(C)]pub struct BackgroundWorker {
    pub bgw_name: [c_char; 96],
    pub bgw_type: [c_char; 96],
    pub bgw_flags: c_int,
    pub bgw_start_time: BgWorkerStartTime,
    pub bgw_restart_time: c_int,
    pub bgw_library_name: [c_char; 96],
    pub bgw_function_name: [c_char; 96],
    pub bgw_main_arg: Datum,
    pub bgw_extra: [c_char; 128],
    pub bgw_notify_pid: pid_t,
}

Fields

bgw_name: [c_char; 96]bgw_type: [c_char; 96]bgw_flags: c_intbgw_start_time: BgWorkerStartTimebgw_restart_time: c_intbgw_library_name: [c_char; 96]bgw_function_name: [c_char; 96]bgw_main_arg: Datumbgw_extra: [c_char; 128]bgw_notify_pid: pid_t

Trait Implementations

impl Clone for BackgroundWorker[src]

impl Copy for BackgroundWorker[src]

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