#[repr(C)]pub struct GActionInterface {
pub g_iface: GTypeInterface,
pub get_name: Option<extern "C" fn(*mut GAction) -> *const gchar>,
pub get_parameter_type: Option<extern "C" fn(*mut GAction) -> *const GVariantType>,
pub get_state_type: Option<extern "C" fn(*mut GAction) -> *const GVariantType>,
pub get_state_hint: Option<extern "C" fn(*mut GAction) -> *mut GVariant>,
pub get_enabled: Option<extern "C" fn(*mut GAction) -> gboolean>,
pub get_state: Option<extern "C" fn(*mut GAction) -> *mut GVariant>,
pub change_state: Option<extern "C" fn(*mut GAction, *mut GVariant)>,
pub activate: Option<extern "C" fn(*mut GAction, *mut GVariant)>,
}Fields§
§g_iface: GTypeInterface§get_name: Option<extern "C" fn(*mut GAction) -> *const gchar>§get_parameter_type: Option<extern "C" fn(*mut GAction) -> *const GVariantType>§get_state_type: Option<extern "C" fn(*mut GAction) -> *const GVariantType>§get_state_hint: Option<extern "C" fn(*mut GAction) -> *mut GVariant>§get_enabled: Option<extern "C" fn(*mut GAction) -> gboolean>§get_state: Option<extern "C" fn(*mut GAction) -> *mut GVariant>§change_state: Option<extern "C" fn(*mut GAction, *mut GVariant)>§activate: Option<extern "C" fn(*mut GAction, *mut GVariant)>Auto Trait Implementations§
impl Freeze for GActionInterface
impl RefUnwindSafe for GActionInterface
impl Send for GActionInterface
impl Sync for GActionInterface
impl Unpin for GActionInterface
impl UnwindSafe for GActionInterface
Blanket Implementations§
Source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
Source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more