[][src]Enum libhandy4::HeaderGroupChildType

#[non_exhaustive]pub enum HeaderGroupChildType {
    HeaderBar,
    GtkHeaderBar,
    HeaderGroup,
    // some variants omitted
}

This enumeration value describes the child types handled by HeaderGroup.

New values may be added to this enumeration over time.

Variants (Non-exhaustive)

Non-exhaustive enums could have additional variants added in future. Therefore, when matching against variants of non-exhaustive enums, an extra wildcard arm must be added to account for any future variants.
HeaderBar

The child is a HeaderBar

GtkHeaderBar

The child is a gtk::HeaderBar

HeaderGroup

The child is a HeaderGroup

Trait Implementations

impl Clone for HeaderGroupChildType[src]

impl Copy for HeaderGroupChildType[src]

impl Debug for HeaderGroupChildType[src]

impl Display for HeaderGroupChildType[src]

impl Eq for HeaderGroupChildType[src]

impl<'a> FromValue<'a> for HeaderGroupChildType[src]

impl<'a> FromValueOptional<'a> for HeaderGroupChildType[src]

impl Hash for HeaderGroupChildType[src]

impl Ord for HeaderGroupChildType[src]

impl PartialEq<HeaderGroupChildType> for HeaderGroupChildType[src]

impl PartialOrd<HeaderGroupChildType> for HeaderGroupChildType[src]

impl SetValue for HeaderGroupChildType[src]

impl StaticType for HeaderGroupChildType[src]

impl StructuralEq for HeaderGroupChildType[src]

impl StructuralPartialEq for HeaderGroupChildType[src]

Auto Trait Implementations

impl RefUnwindSafe for HeaderGroupChildType[src]

impl Send for HeaderGroupChildType[src]

impl Sync for HeaderGroupChildType[src]

impl Unpin for HeaderGroupChildType[src]

impl UnwindSafe for HeaderGroupChildType[src]

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> ToSendValue for T where
    T: ToValue + SetValue + Send + ?Sized

impl<T> ToString for T where
    T: Display + ?Sized
[src]

impl<T> ToValue for T where
    T: SetValue + ?Sized

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.