Struct libappindicator_sys::_GParamSpec [−][src]
#[repr(C)]pub struct _GParamSpec {
pub g_type_instance: GTypeInstance,
pub name: *const gchar,
pub flags: GParamFlags,
pub value_type: GType,
pub owner_type: GType,
pub _nick: *mut gchar,
pub _blurb: *mut gchar,
pub qdata: *mut GData,
pub ref_count: guint,
pub param_id: guint,
}
Expand description
GParamSpec: (ref-func g_param_spec_ref_sink) (unref-func g_param_spec_uref) (set-value-func g_value_set_param) (get-value-func g_value_get_param) @g_type_instance: private #GTypeInstance portion @name: name of this parameter: always an interned string @flags: #GParamFlags flags for this parameter @value_type: the #GValue type for this parameter @owner_type: #GType type that uses (introduces) this parameter
All other fields of the GParamSpec struct are private and should not be used directly.
Fields
g_type_instance: GTypeInstance
name: *const gchar
flags: GParamFlags
value_type: GType
owner_type: GType
_nick: *mut gchar
_blurb: *mut gchar
qdata: *mut GData
ref_count: guint
param_id: guint
Trait Implementations
Auto Trait Implementations
impl RefUnwindSafe for _GParamSpec
impl !Send for _GParamSpec
impl !Sync for _GParamSpec
impl Unpin for _GParamSpec
impl UnwindSafe for _GParamSpec
Blanket Implementations
Mutably borrows from an owned value. Read more