Struct frida_gum_sys::_GTypeValueTable[][src]

#[repr(C)]pub struct _GTypeValueTable {
    pub value_init: Option<unsafe extern "C" fn(value: *mut GValue)>,
    pub value_free: Option<unsafe extern "C" fn(value: *mut GValue)>,
    pub value_copy: Option<unsafe extern "C" fn(src_value: *const GValue, dest_value: *mut GValue)>,
    pub value_peek_pointer: Option<unsafe extern "C" fn(value: *const GValue) -> gpointer>,
    pub collect_format: *const gchar,
    pub collect_value: Option<unsafe extern "C" fn(value: *mut GValue, n_collect_values: guint, collect_values: *mut GTypeCValue, collect_flags: guint) -> *mut gchar>,
    pub lcopy_format: *const gchar,
    pub lcopy_value: Option<unsafe extern "C" fn(value: *const GValue, n_collect_values: guint, collect_values: *mut GTypeCValue, collect_flags: guint) -> *mut gchar>,
}

Fields

value_init: Option<unsafe extern "C" fn(value: *mut GValue)>value_free: Option<unsafe extern "C" fn(value: *mut GValue)>value_copy: Option<unsafe extern "C" fn(src_value: *const GValue, dest_value: *mut GValue)>value_peek_pointer: Option<unsafe extern "C" fn(value: *const GValue) -> gpointer>collect_format: *const gcharcollect_value: Option<unsafe extern "C" fn(value: *mut GValue, n_collect_values: guint, collect_values: *mut GTypeCValue, collect_flags: guint) -> *mut gchar>lcopy_format: *const gcharlcopy_value: Option<unsafe extern "C" fn(value: *const GValue, n_collect_values: guint, collect_values: *mut GTypeCValue, collect_flags: guint) -> *mut gchar>

Trait Implementations

impl Clone for _GTypeValueTable[src]

impl Copy for _GTypeValueTable[src]

impl Debug for _GTypeValueTable[src]

Auto Trait Implementations

Blanket Implementations

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

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

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

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

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

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

type Owned = T

The resulting type after obtaining ownership.

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.

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.