Type Alias GFlagsValue

Source
pub type GFlagsValue = _GFlagsValue;
Expand description

GFlagsValue: @value: the flags value @value_name: the name of the value @value_nick: the nickname of the value

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

Aliased Type§

struct GFlagsValue {
    pub value: u32,
    pub value_name: *const i8,
    pub value_nick: *const i8,
}

Fields§

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