[][src]Struct libappindicator::_GValue

#[repr(C)]pub struct _GValue {
    pub g_type: u64,
    pub data: [_GValue__bindgen_ty_1; 2],
}

GValue:

An opaque structure used to hold different types of values. The data within the structure has protected scope: it is accessible only to functions within a #GTypeValueTable structure, or implementations of the g_value_*() API. That is, code portions which implement new fundamental types. #GValue users cannot make any assumptions about how data is stored within the 2 element @data union, and the @g_type member should only be accessed through the G_VALUE_TYPE() macro.

Fields

g_type: u64data: [_GValue__bindgen_ty_1; 2]

Trait Implementations

impl Clone for _GValue[src]

impl Copy for _GValue[src]

Auto Trait Implementations

impl RefUnwindSafe for _GValue

impl !Send for _GValue

impl !Sync for _GValue

impl Unpin for _GValue

impl UnwindSafe for _GValue

Blanket Implementations

impl<T> Any for T where
    T: 'static + ?Sized
[src]

impl<T> Borrow<T> for T where
    T: ?Sized
[src]

impl<T> BorrowMut<T> for T where
    T: ?Sized
[src]

impl<T> From<T> for T[src]

impl<T, U> Into<U> for T where
    U: From<T>, 
[src]

impl<T> ToOwned for T where
    T: Clone
[src]

type Owned = T

The resulting type after obtaining ownership.

impl<T, U> TryFrom<U> for T where
    U: Into<T>, 
[src]

type Error = Infallible

The type returned in the event of a conversion error.

impl<T, U> TryInto<U> for T where
    U: TryFrom<T>, 
[src]

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.