#[repr(C)]pub struct _GInterfaceInfo {
pub interface_init: GInterfaceInitFunc,
pub interface_finalize: GInterfaceFinalizeFunc,
pub interface_data: gpointer,
}
Expand description
GInterfaceInfo: @interface_init: location of the interface initialization function @interface_finalize: location of the interface finalization function @interface_data: user-supplied data passed to the interface init/finalize functions
A structure that provides information to the type system which is used specifically for managing interface types.
Fields§
§interface_init: GInterfaceInitFunc
§interface_finalize: GInterfaceFinalizeFunc
§interface_data: gpointer
Trait Implementations§
Source§impl Clone for _GInterfaceInfo
impl Clone for _GInterfaceInfo
Source§fn clone(&self) -> _GInterfaceInfo
fn clone(&self) -> _GInterfaceInfo
Returns a duplicate of the value. Read more
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source
. Read moreSource§impl Debug for _GInterfaceInfo
impl Debug for _GInterfaceInfo
Source§impl PartialEq for _GInterfaceInfo
impl PartialEq for _GInterfaceInfo
impl Copy for _GInterfaceInfo
impl Eq for _GInterfaceInfo
impl StructuralPartialEq for _GInterfaceInfo
Auto Trait Implementations§
impl Freeze for _GInterfaceInfo
impl RefUnwindSafe for _GInterfaceInfo
impl !Send for _GInterfaceInfo
impl !Sync for _GInterfaceInfo
impl Unpin for _GInterfaceInfo
impl UnwindSafe for _GInterfaceInfo
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