[−][src]Struct gst::ffi::Struct__GThreadFunctions
Fields
mutex_new: Option<extern "C" fn() -> *mut GMutex>
mutex_lock: Option<extern "C" fn(mutex: *mut GMutex)>
mutex_trylock: Option<extern "C" fn(mutex: *mut GMutex) -> gboolean>
mutex_unlock: Option<extern "C" fn(mutex: *mut GMutex)>
mutex_free: Option<extern "C" fn(mutex: *mut GMutex)>
cond_new: Option<extern "C" fn() -> *mut GCond>
cond_signal: Option<extern "C" fn(cond: *mut GCond)>
cond_broadcast: Option<extern "C" fn(cond: *mut GCond)>
cond_wait: Option<extern "C" fn(cond: *mut GCond, mutex: *mut GMutex)>
cond_timed_wait: Option<extern "C" fn(cond: *mut GCond, mutex: *mut GMutex, end_time: *mut GTimeVal) -> gboolean>
cond_free: Option<extern "C" fn(cond: *mut GCond)>
private_new: Option<extern "C" fn(destructor: GDestroyNotify) -> *mut GPrivate>
private_get: Option<extern "C" fn(private_key: *mut GPrivate) -> gpointer>
private_set: Option<extern "C" fn(private_key: *mut GPrivate, data: gpointer)>
thread_create: Option<extern "C" fn(func: GThreadFunc, data: gpointer, stack_size: gulong, joinable: gboolean, bound: gboolean, priority: GThreadPriority, thread: gpointer, error: *mut *mut GError)>
thread_yield: Option<extern "C" fn()>
thread_join: Option<extern "C" fn(thread: gpointer)>
thread_exit: Option<extern "C" fn()>
thread_set_priority: Option<extern "C" fn(thread: gpointer, priority: GThreadPriority)>
thread_self: Option<extern "C" fn(thread: gpointer)>
thread_equal: Option<extern "C" fn(thread1: gpointer, thread2: gpointer) -> gboolean>
Trait Implementations
impl Default for Struct__GThreadFunctions
[src]
fn default() -> Struct__GThreadFunctions
[src]
Auto Trait Implementations
impl Send for Struct__GThreadFunctions
impl Sync for Struct__GThreadFunctions
Blanket Implementations
impl<T> From for T
[src]
impl<T, U> Into for T where
U: From<T>,
[src]
U: From<T>,
impl<T, U> TryFrom for T where
U: Into<T>,
[src]
U: Into<T>,
type Error = Infallible
The type returned in the event of a conversion error.
fn try_from(value: U) -> Result<T, <T as TryFrom<U>>::Error>
[src]
impl<T> Borrow for T where
T: ?Sized,
[src]
T: ?Sized,
impl<T> Any for T where
T: 'static + ?Sized,
[src]
T: 'static + ?Sized,
impl<T> BorrowMut for T where
T: ?Sized,
[src]
T: ?Sized,
fn borrow_mut(&mut self) -> &mut T
[src]
impl<T, U> TryInto for T where
U: TryFrom<T>,
[src]
U: TryFrom<T>,