Type Alias GEnumValue

Source
pub type GEnumValue = _GEnumValue;
Expand description

GEnumValue: @value: the enum value @value_name: the name of the value @value_nick: the nickname of the value

A structure which contains a single enum value, its name, and its nickname.

Aliased Type§

struct GEnumValue {
    pub value: i32,
    pub value_name: *const i8,
    pub value_nick: *const i8,
}

Fields§

§value: i32§value_name: *const i8§value_nick: *const i8