#[repr(C)]pub struct _GTypeQuery {
pub type_: GType,
pub type_name: *const gchar,
pub class_size: guint,
pub instance_size: guint,
}
Expand description
GTypeQuery: @type: the #GType value of the type @type_name: the name of the type @class_size: the size of the class structure @instance_size: the size of the instance structure
A structure holding information for a specific type.
See also: g_type_query()
Fields§
§type_: GType
§type_name: *const gchar
§class_size: guint
§instance_size: guint
Trait Implementations§
Source§impl Clone for _GTypeQuery
impl Clone for _GTypeQuery
Source§fn clone(&self) -> _GTypeQuery
fn clone(&self) -> _GTypeQuery
Returns a copy 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 _GTypeQuery
impl Debug for _GTypeQuery
Source§impl PartialEq for _GTypeQuery
impl PartialEq for _GTypeQuery
impl Copy for _GTypeQuery
impl Eq for _GTypeQuery
impl StructuralPartialEq for _GTypeQuery
Auto Trait Implementations§
impl Freeze for _GTypeQuery
impl RefUnwindSafe for _GTypeQuery
impl !Send for _GTypeQuery
impl !Sync for _GTypeQuery
impl Unpin for _GTypeQuery
impl UnwindSafe for _GTypeQuery
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