Type Alias GThread
Source pub type GThread = _GThread;
#[repr(C)]
pub struct GThread {
pub func: Option<unsafe extern "C" fn(*mut c_void) -> *mut c_void>,
pub data: *mut c_void,
pub joinable: i32,
pub priority: u32,
}
Trait Implementations
Performs copy-assignment from
source
.
Read more
Formats the value using the given formatter.
Read more
Tests for self
and other
values to be equal, and is used by ==
.
Tests for !=
. The default implementation is almost always sufficient,
and should not be overridden without very good reason.