Struct frida_sys::_GClosure[][src]

#[repr(C)]
pub struct _GClosure { pub _bitfield_align_1: [u16; 0], pub _bitfield_1: __BindgenBitfieldUnit<[u8; 4]>, pub marshal: Option<unsafe extern "C" fn(closure: *mut GClosure, return_value: *mut GValue, n_param_values: guint, param_values: *const GValue, invocation_hint: gpointer, marshal_data: gpointer)>, pub data: gpointer, pub notifiers: *mut GClosureNotifyData, }

Fields

_bitfield_align_1: [u16; 0]_bitfield_1: __BindgenBitfieldUnit<[u8; 4]>marshal: Option<unsafe extern "C" fn(closure: *mut GClosure, return_value: *mut GValue, n_param_values: guint, param_values: *const GValue, invocation_hint: gpointer, marshal_data: gpointer)>data: gpointernotifiers: *mut GClosureNotifyData

Implementations

impl _GClosure[src]

pub fn ref_count(&self) -> guint[src]

pub fn set_ref_count(&mut self, val: guint)[src]

pub fn meta_marshal_nouse(&self) -> guint[src]

pub fn set_meta_marshal_nouse(&mut self, val: guint)[src]

pub fn n_guards(&self) -> guint[src]

pub fn set_n_guards(&mut self, val: guint)[src]

pub fn n_fnotifiers(&self) -> guint[src]

pub fn set_n_fnotifiers(&mut self, val: guint)[src]

pub fn n_inotifiers(&self) -> guint[src]

pub fn set_n_inotifiers(&mut self, val: guint)[src]

pub fn in_inotify(&self) -> guint[src]

pub fn set_in_inotify(&mut self, val: guint)[src]

pub fn floating(&self) -> guint[src]

pub fn set_floating(&mut self, val: guint)[src]

pub fn derivative_flag(&self) -> guint[src]

pub fn set_derivative_flag(&mut self, val: guint)[src]

pub fn in_marshal(&self) -> guint[src]

pub fn set_in_marshal(&mut self, val: guint)[src]

pub fn is_invalid(&self) -> guint[src]

pub fn set_is_invalid(&mut self, val: guint)[src]

pub fn new_bitfield_1(
    ref_count: guint,
    meta_marshal_nouse: guint,
    n_guards: guint,
    n_fnotifiers: guint,
    n_inotifiers: guint,
    in_inotify: guint,
    floating: guint,
    derivative_flag: guint,
    in_marshal: guint,
    is_invalid: guint
) -> __BindgenBitfieldUnit<[u8; 4]>
[src]

Trait Implementations

impl Clone for _GClosure[src]

fn clone(&self) -> _GClosure[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 _GClosure[src]

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

Formats the value using the given formatter. Read more

impl Copy for _GClosure[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.