Struct frida_sys::_GActionInterface
source · [−]#[repr(C)]pub struct _GActionInterface {
pub g_iface: GTypeInterface,
pub get_name: Option<unsafe extern "C" fn(action: *mut GAction) -> *const gchar>,
pub get_parameter_type: Option<unsafe extern "C" fn(action: *mut GAction) -> *const GVariantType>,
pub get_state_type: Option<unsafe extern "C" fn(action: *mut GAction) -> *const GVariantType>,
pub get_state_hint: Option<unsafe extern "C" fn(action: *mut GAction) -> *mut GVariant>,
pub get_enabled: Option<unsafe extern "C" fn(action: *mut GAction) -> gboolean>,
pub get_state: Option<unsafe extern "C" fn(action: *mut GAction) -> *mut GVariant>,
pub change_state: Option<unsafe extern "C" fn(action: *mut GAction, value: *mut GVariant)>,
pub activate: Option<unsafe extern "C" fn(action: *mut GAction, parameter: *mut GVariant)>,
}Fields
g_iface: GTypeInterfaceget_name: Option<unsafe extern "C" fn(action: *mut GAction) -> *const gchar>get_parameter_type: Option<unsafe extern "C" fn(action: *mut GAction) -> *const GVariantType>get_state_type: Option<unsafe extern "C" fn(action: *mut GAction) -> *const GVariantType>get_state_hint: Option<unsafe extern "C" fn(action: *mut GAction) -> *mut GVariant>get_enabled: Option<unsafe extern "C" fn(action: *mut GAction) -> gboolean>get_state: Option<unsafe extern "C" fn(action: *mut GAction) -> *mut GVariant>change_state: Option<unsafe extern "C" fn(action: *mut GAction, value: *mut GVariant)>activate: Option<unsafe extern "C" fn(action: *mut GAction, parameter: *mut GVariant)>Trait Implementations
sourceimpl Clone for _GActionInterface
impl Clone for _GActionInterface
sourcefn clone(&self) -> _GActionInterface
fn clone(&self) -> _GActionInterface
Returns a copy of the value. Read more
1.0.0 · sourcefn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from source. Read more
sourceimpl Debug for _GActionInterface
impl Debug for _GActionInterface
impl Copy for _GActionInterface
Auto Trait Implementations
impl RefUnwindSafe for _GActionInterface
impl Send for _GActionInterface
impl Sync for _GActionInterface
impl Unpin for _GActionInterface
impl UnwindSafe for _GActionInterface
Blanket Implementations
sourceimpl<T> BorrowMut<T> for T where
T: ?Sized,
impl<T> BorrowMut<T> for T where
T: ?Sized,
const: unstable · sourcefn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more
sourceimpl<T> ToOwned for T where
T: Clone,
impl<T> ToOwned for T where
T: Clone,
type Owned = T
type Owned = T
The resulting type after obtaining ownership.
sourcefn clone_into(&self, target: &mut T)
fn clone_into(&self, target: &mut T)
🔬 This is a nightly-only experimental API. (
toowned_clone_into)Uses borrowed data to replace owned data, usually by cloning. Read more