Struct frida_sys::_GThreadFunctions[][src]

#[repr(C)]
pub struct _GThreadFunctions {
Show fields pub mutex_new: Option<unsafe extern "C" fn() -> *mut GMutex>, pub mutex_lock: Option<unsafe extern "C" fn(mutex: *mut GMutex)>, pub mutex_trylock: Option<unsafe extern "C" fn(mutex: *mut GMutex) -> gboolean>, pub mutex_unlock: Option<unsafe extern "C" fn(mutex: *mut GMutex)>, pub mutex_free: Option<unsafe extern "C" fn(mutex: *mut GMutex)>, pub cond_new: Option<unsafe extern "C" fn() -> *mut GCond>, pub cond_signal: Option<unsafe extern "C" fn(cond: *mut GCond)>, pub cond_broadcast: Option<unsafe extern "C" fn(cond: *mut GCond)>, pub cond_wait: Option<unsafe extern "C" fn(cond: *mut GCond, mutex: *mut GMutex)>, pub cond_timed_wait: Option<unsafe extern "C" fn(cond: *mut GCond, mutex: *mut GMutex, end_time: *mut GTimeVal) -> gboolean>, pub cond_free: Option<unsafe extern "C" fn(cond: *mut GCond)>, pub private_new: Option<unsafe extern "C" fn(destructor: GDestroyNotify) -> *mut GPrivate>, pub private_get: Option<unsafe extern "C" fn(private_key: *mut GPrivate) -> gpointer>, pub private_set: Option<unsafe extern "C" fn(private_key: *mut GPrivate, data: gpointer)>, pub thread_create: Option<unsafe extern "C" fn(func: GThreadFunc, data: gpointer, stack_size: gulong, joinable: gboolean, bound: gboolean, priority: GThreadPriority, thread: gpointer, error: *mut *mut GError)>, pub thread_yield: Option<unsafe extern "C" fn()>, pub thread_join: Option<unsafe extern "C" fn(thread: gpointer)>, pub thread_exit: Option<unsafe extern "C" fn()>, pub thread_set_priority: Option<unsafe extern "C" fn(thread: gpointer, priority: GThreadPriority)>, pub thread_self: Option<unsafe extern "C" fn(thread: gpointer)>, pub thread_equal: Option<unsafe extern "C" fn(thread1: gpointer, thread2: gpointer) -> gboolean>,
}

Fields

mutex_new: Option<unsafe extern "C" fn() -> *mut GMutex>mutex_lock: Option<unsafe extern "C" fn(mutex: *mut GMutex)>mutex_trylock: Option<unsafe extern "C" fn(mutex: *mut GMutex) -> gboolean>mutex_unlock: Option<unsafe extern "C" fn(mutex: *mut GMutex)>mutex_free: Option<unsafe extern "C" fn(mutex: *mut GMutex)>cond_new: Option<unsafe extern "C" fn() -> *mut GCond>cond_signal: Option<unsafe extern "C" fn(cond: *mut GCond)>cond_broadcast: Option<unsafe extern "C" fn(cond: *mut GCond)>cond_wait: Option<unsafe extern "C" fn(cond: *mut GCond, mutex: *mut GMutex)>cond_timed_wait: Option<unsafe extern "C" fn(cond: *mut GCond, mutex: *mut GMutex, end_time: *mut GTimeVal) -> gboolean>cond_free: Option<unsafe extern "C" fn(cond: *mut GCond)>private_new: Option<unsafe extern "C" fn(destructor: GDestroyNotify) -> *mut GPrivate>private_get: Option<unsafe extern "C" fn(private_key: *mut GPrivate) -> gpointer>private_set: Option<unsafe extern "C" fn(private_key: *mut GPrivate, data: gpointer)>thread_create: Option<unsafe 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<unsafe extern "C" fn()>thread_join: Option<unsafe extern "C" fn(thread: gpointer)>thread_exit: Option<unsafe extern "C" fn()>thread_set_priority: Option<unsafe extern "C" fn(thread: gpointer, priority: GThreadPriority)>thread_self: Option<unsafe extern "C" fn(thread: gpointer)>thread_equal: Option<unsafe extern "C" fn(thread1: gpointer, thread2: gpointer) -> gboolean>

Trait Implementations

impl Clone for _GThreadFunctions[src]

fn clone(&self) -> _GThreadFunctions[src]

Returns a copy of the value. Read more

fn clone_from(&mut self, source: &Self)1.0.0[src]

Performs copy-assignment from source. Read more

impl Debug for _GThreadFunctions[src]

fn fmt(&self, f: &mut Formatter<'_>) -> Result[src]

Formats the value using the given formatter. Read more

impl Copy for _GThreadFunctions[src]

Auto Trait Implementations

Blanket Implementations

impl<T> Any for T where
    T: 'static + ?Sized
[src]

pub fn type_id(&self) -> TypeId[src]

Gets the TypeId of self. Read more

impl<T> Borrow<T> for T where
    T: ?Sized
[src]

pub fn borrow(&self) -> &T[src]

Immutably borrows from an owned value. Read more

impl<T> BorrowMut<T> for T where
    T: ?Sized
[src]

pub fn borrow_mut(&mut self) -> &mut T[src]

Mutably borrows from an owned value. Read more

impl<T> From<T> for T[src]

pub fn from(t: T) -> T[src]

Performs the conversion.

impl<T, U> Into<U> for T where
    U: From<T>, 
[src]

pub fn into(self) -> U[src]

Performs the conversion.

impl<T> ToOwned for T where
    T: Clone
[src]

type Owned = T

The resulting type after obtaining ownership.

pub fn to_owned(&self) -> T[src]

Creates owned data from borrowed data, usually by cloning. Read more

pub fn clone_into(&self, target: &mut T)[src]

🔬 This is a nightly-only experimental API. (toowned_clone_into)

recently added

Uses borrowed data to replace owned data, usually by cloning. Read more

impl<T, U> TryFrom<U> for T where
    U: Into<T>, 
[src]

type Error = Infallible

The type returned in the event of a conversion error.

pub fn try_from(value: U) -> Result<T, <T as TryFrom<U>>::Error>[src]

Performs the conversion.

impl<T, U> TryInto<U> for T where
    U: TryFrom<T>, 
[src]

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.

pub fn try_into(self) -> Result<U, <U as TryFrom<T>>::Error>[src]

Performs the conversion.