#[repr(C)]pub struct GThreadFunctions {Show 21 fields
pub mutex_new: Option<unsafe extern "C" fn() -> *mut GMutex>,
pub mutex_lock: Option<unsafe extern "C" fn(_: *mut GMutex)>,
pub mutex_trylock: Option<unsafe extern "C" fn(_: *mut GMutex) -> gboolean>,
pub mutex_unlock: Option<unsafe extern "C" fn(_: *mut GMutex)>,
pub mutex_free: Option<unsafe extern "C" fn(_: *mut GMutex)>,
pub cond_new: Option<unsafe extern "C" fn() -> *mut GCond>,
pub cond_signal: Option<unsafe extern "C" fn(_: *mut GCond)>,
pub cond_broadcast: Option<unsafe extern "C" fn(_: *mut GCond)>,
pub cond_wait: Option<unsafe extern "C" fn(_: *mut GCond, _: *mut GMutex)>,
pub cond_timed_wait: Option<unsafe extern "C" fn(_: *mut GCond, _: *mut GMutex, _: *mut GTimeVal) -> gboolean>,
pub cond_free: Option<unsafe extern "C" fn(_: *mut GCond)>,
pub private_new: Option<unsafe extern "C" fn(_: GDestroyNotify) -> *mut GPrivate>,
pub private_get: Option<unsafe extern "C" fn(_: *mut GPrivate) -> gpointer>,
pub private_set: Option<unsafe extern "C" fn(_: *mut GPrivate, _: gpointer)>,
pub thread_create: Option<unsafe extern "C" fn(_: GThreadFunc, _: gpointer, _: c_ulong, _: gboolean, _: gboolean, _: GThreadPriority, _: gpointer, _: *mut *mut GError)>,
pub thread_yield: Option<unsafe extern "C" fn()>,
pub thread_join: Option<unsafe extern "C" fn(_: gpointer)>,
pub thread_exit: Option<unsafe extern "C" fn()>,
pub thread_set_priority: Option<unsafe extern "C" fn(_: gpointer, _: GThreadPriority)>,
pub thread_self: Option<unsafe extern "C" fn(_: gpointer)>,
pub thread_equal: Option<unsafe extern "C" fn(_: gpointer, _: gpointer) -> gboolean>,
}
Fields§
§mutex_new: Option<unsafe extern "C" fn() -> *mut GMutex>
§mutex_lock: Option<unsafe extern "C" fn(_: *mut GMutex)>
§mutex_trylock: Option<unsafe extern "C" fn(_: *mut GMutex) -> gboolean>
§mutex_unlock: Option<unsafe extern "C" fn(_: *mut GMutex)>
§mutex_free: Option<unsafe extern "C" fn(_: *mut GMutex)>
§cond_new: Option<unsafe extern "C" fn() -> *mut GCond>
§cond_signal: Option<unsafe extern "C" fn(_: *mut GCond)>
§cond_broadcast: Option<unsafe extern "C" fn(_: *mut GCond)>
§cond_wait: Option<unsafe extern "C" fn(_: *mut GCond, _: *mut GMutex)>
§cond_timed_wait: Option<unsafe extern "C" fn(_: *mut GCond, _: *mut GMutex, _: *mut GTimeVal) -> gboolean>
§cond_free: Option<unsafe extern "C" fn(_: *mut GCond)>
§private_new: Option<unsafe extern "C" fn(_: GDestroyNotify) -> *mut GPrivate>
§private_get: Option<unsafe extern "C" fn(_: *mut GPrivate) -> gpointer>
§private_set: Option<unsafe extern "C" fn(_: *mut GPrivate, _: gpointer)>
§thread_create: Option<unsafe extern "C" fn(_: GThreadFunc, _: gpointer, _: c_ulong, _: gboolean, _: gboolean, _: GThreadPriority, _: gpointer, _: *mut *mut GError)>
§thread_yield: Option<unsafe extern "C" fn()>
§thread_join: Option<unsafe extern "C" fn(_: gpointer)>
§thread_exit: Option<unsafe extern "C" fn()>
§thread_set_priority: Option<unsafe extern "C" fn(_: gpointer, _: GThreadPriority)>
§thread_self: Option<unsafe extern "C" fn(_: gpointer)>
§thread_equal: Option<unsafe extern "C" fn(_: gpointer, _: gpointer) -> gboolean>
Trait Implementations§
Source§impl Clone for GThreadFunctions
impl Clone for GThreadFunctions
Source§fn clone(&self) -> GThreadFunctions
fn clone(&self) -> GThreadFunctions
Returns a copy of the value. Read more
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source
. Read moreSource§impl Debug for GThreadFunctions
impl Debug for GThreadFunctions
impl Copy for GThreadFunctions
Auto Trait Implementations§
impl Freeze for GThreadFunctions
impl RefUnwindSafe for GThreadFunctions
impl Send for GThreadFunctions
impl Sync for GThreadFunctions
impl Unpin for GThreadFunctions
impl UnwindSafe for GThreadFunctions
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
Source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
Source§unsafe fn clone_to_uninit(&self, dst: *mut T)
unsafe fn clone_to_uninit(&self, dst: *mut T)
🔬This is a nightly-only experimental API. (
clone_to_uninit
)