[][src]Enum gtk::SizeGroupMode

#[non_exhaustive]pub enum SizeGroupMode {
    None,
    Horizontal,
    Vertical,
    Both,
    // some variants omitted
}

The mode of the size group determines the directions in which the size group affects the requested sizes of its component widgets.

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.
None

group has no effect

Horizontal

group affects horizontal requisition

Vertical

group affects vertical requisition

Both

group affects both horizontal and vertical requisition

Trait Implementations

impl Clone for SizeGroupMode[src]

impl Copy for SizeGroupMode[src]

impl Debug for SizeGroupMode[src]

impl Display for SizeGroupMode[src]

impl Eq for SizeGroupMode[src]

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

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

impl Hash for SizeGroupMode[src]

impl Ord for SizeGroupMode[src]

impl PartialEq<SizeGroupMode> for SizeGroupMode[src]

impl PartialOrd<SizeGroupMode> for SizeGroupMode[src]

impl SetValue for SizeGroupMode[src]

impl StaticType for SizeGroupMode[src]

impl StructuralEq for SizeGroupMode[src]

impl StructuralPartialEq for SizeGroupMode[src]

Auto Trait Implementations

impl RefUnwindSafe for SizeGroupMode

impl Send for SizeGroupMode

impl Sync for SizeGroupMode

impl Unpin for SizeGroupMode

impl UnwindSafe for SizeGroupMode

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.