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
Trait Implementations
Source§impl Clone for _GEnumValue
impl Clone for _GEnumValue
Source§fn clone(&self) -> _GEnumValue
fn clone(&self) -> _GEnumValue
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 more