#[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_int§bgw_start_time: BgWorkerStartTime§bgw_restart_time: c_int§bgw_library_name: [c_char; 96]§bgw_function_name: [c_char; 96]§bgw_main_arg: Datum§bgw_extra: [c_char; 128]§bgw_notify_pid: pid_tAuto Trait Implementations§
impl Freeze for BackgroundWorker
impl RefUnwindSafe for BackgroundWorker
impl Send for BackgroundWorker
impl Sync for BackgroundWorker
impl Unpin for BackgroundWorker
impl UnwindSafe for BackgroundWorker
Blanket Implementations§
Source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
Source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more