Struct GThreadFunctions
#[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) -> i32>,
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) -> i32>,
pub cond_free: Option<unsafe extern "C" fn(*mut GCond)>,
pub private_new: Option<unsafe extern "C" fn(Option<unsafe extern "C" fn(*mut c_void)>) -> *mut GPrivate>,
pub private_get: Option<unsafe extern "C" fn(*mut GPrivate) -> *mut c_void>,
pub private_set: Option<unsafe extern "C" fn(*mut GPrivate, *mut c_void)>,
pub thread_create: Option<unsafe extern "C" fn(Option<unsafe extern "C" fn(*mut c_void) -> *mut c_void>, *mut c_void, u64, i32, i32, i32, *mut c_void, *mut *mut GError)>,
pub thread_yield: Option<unsafe extern "C" fn()>,
pub thread_join: Option<unsafe extern "C" fn(*mut c_void)>,
pub thread_exit: Option<unsafe extern "C" fn()>,
pub thread_set_priority: Option<unsafe extern "C" fn(*mut c_void, i32)>,
pub thread_self: Option<unsafe extern "C" fn(*mut c_void)>,
pub thread_equal: Option<unsafe extern "C" fn(*mut c_void, *mut c_void) -> i32>,
}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) -> i32>§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) -> i32>§cond_free: Option<unsafe extern "C" fn(*mut GCond)>§private_new: Option<unsafe extern "C" fn(Option<unsafe extern "C" fn(*mut c_void)>) -> *mut GPrivate>§private_get: Option<unsafe extern "C" fn(*mut GPrivate) -> *mut c_void>§private_set: Option<unsafe extern "C" fn(*mut GPrivate, *mut c_void)>§thread_create: Option<unsafe extern "C" fn(Option<unsafe extern "C" fn(*mut c_void) -> *mut c_void>, *mut c_void, u64, i32, i32, i32, *mut c_void, *mut *mut GError)>§thread_yield: Option<unsafe extern "C" fn()>§thread_join: Option<unsafe extern "C" fn(*mut c_void)>§thread_exit: Option<unsafe extern "C" fn()>§thread_set_priority: Option<unsafe extern "C" fn(*mut c_void, i32)>§thread_self: Option<unsafe extern "C" fn(*mut c_void)>§thread_equal: Option<unsafe extern "C" fn(*mut c_void, *mut c_void) -> i32>Trait Implementations§
§impl Clone for GThreadFunctions
impl Clone for GThreadFunctions
§fn clone(&self) -> GThreadFunctions
fn clone(&self) -> GThreadFunctions
Returns a duplicate 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 more§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,
§impl<T> Instrument for T
impl<T> Instrument for T
§fn instrument(self, span: Span) -> Instrumented<Self> ⓘ
fn instrument(self, span: Span) -> Instrumented<Self> ⓘ
Source§impl<T> IntoEither for T
impl<T> IntoEither for T
Source§fn into_either(self, into_left: bool) -> Either<Self, Self> ⓘ
fn into_either(self, into_left: bool) -> Either<Self, Self> ⓘ
Converts
self into a Left variant of Either<Self, Self>
if into_left is true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read moreSource§fn into_either_with<F>(self, into_left: F) -> Either<Self, Self> ⓘ
fn into_either_with<F>(self, into_left: F) -> Either<Self, Self> ⓘ
Converts
self into a Left variant of Either<Self, Self>
if into_left(&self) returns true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read more