[−][src]Struct glib::EnumClass
Representation of an enum for dynamically, at runtime, querying the values of the enum and
using them.
Methods
impl EnumClass[src]
pub fn new(type_: Type) -> Option<Self>[src]
Create a new EnumClass from a Type.
Returns None if type_ is not representing an enum.
pub fn type_(&self) -> Type[src]
Type of the enum.
pub fn get_value(&self, value: i32) -> Option<EnumValue>[src]
Gets EnumValue by integer value, if existing.
Returns None if the enum does not contain any value
with value.
pub fn get_value_by_name(&self, name: &str) -> Option<EnumValue>[src]
Gets EnumValue by string name name, if existing.
Returns None if the enum does not contain any value
with name name.
pub fn get_value_by_nick(&self, nick: &str) -> Option<EnumValue>[src]
Gets EnumValue by string nick nick, if existing.
Returns None if the enum does not contain any value
with nick nick.
pub fn get_values(&self) -> Vec<EnumValue>[src]
Gets all EnumValue of this EnumClass.
pub fn to_value(&self, value: i32) -> Option<Value>[src]
Converts integer value to a Value, if part of the enum.
pub fn to_value_by_name(&self, name: &str) -> Option<Value>[src]
Converts string name name to a Value, if part of the enum.
pub fn to_value_by_nick(&self, nick: &str) -> Option<Value>[src]
Converts string nick nick to a Value, if part of the enum.
Trait Implementations
impl Clone for EnumClass[src]
fn clone(&self) -> Self[src]
fn clone_from(&mut self, source: &Self)1.0.0[src]
impl Debug for EnumClass[src]
impl Drop for EnumClass[src]
impl Send for EnumClass[src]
impl Sync for EnumClass[src]
Auto Trait Implementations
Blanket Implementations
impl<T> Any for T where
T: 'static + ?Sized, [src]
T: 'static + ?Sized,
impl<T> Borrow<T> for T where
T: ?Sized, [src]
T: ?Sized,
impl<T> BorrowMut<T> for T where
T: ?Sized, [src]
T: ?Sized,
fn borrow_mut(&mut self) -> &mut T[src]
impl<T> From<T> for T[src]
impl<T, U> Into<U> for T where
U: From<T>, [src]
U: From<T>,
impl<T> ToOwned for T where
T: Clone, [src]
T: Clone,
type Owned = T
The resulting type after obtaining ownership.
fn to_owned(&self) -> T[src]
fn clone_into(&self, target: &mut T)[src]
impl<T, U> TryFrom<U> for T where
U: Into<T>, [src]
U: Into<T>,
type Error = Infallible
The type returned in the event of a conversion error.
fn try_from(value: U) -> Result<T, <T as TryFrom<U>>::Error>[src]
impl<T, U> TryInto<U> for T where
U: TryFrom<T>, [src]
U: TryFrom<T>,