[][src]Enum gtk::ToolbarStyle

#[non_exhaustive]pub enum ToolbarStyle {
    Icons,
    Text,
    Both,
    BothHoriz,
    // some variants omitted
}

Used to customize the appearance of a Toolbar. Note that setting the toolbar style overrides the user’s preferences for the default toolbar style. Note that if the button has only a label set and GTK_TOOLBAR_ICONS is used, the label will be visible, and vice versa.

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

Buttons display only icons in the toolbar.

Text

Buttons display only text labels in the toolbar.

Both

Buttons display text and icons in the toolbar.

BothHoriz

Buttons display icons and text alongside each other, rather than vertically stacked

Trait Implementations

impl Clone for ToolbarStyle[src]

impl Copy for ToolbarStyle[src]

impl Debug for ToolbarStyle[src]

impl Display for ToolbarStyle[src]

impl Eq for ToolbarStyle[src]

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

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

impl Hash for ToolbarStyle[src]

impl Ord for ToolbarStyle[src]

impl PartialEq<ToolbarStyle> for ToolbarStyle[src]

impl PartialOrd<ToolbarStyle> for ToolbarStyle[src]

impl SetValue for ToolbarStyle[src]

impl StaticType for ToolbarStyle[src]

impl StructuralEq for ToolbarStyle[src]

impl StructuralPartialEq for ToolbarStyle[src]

Auto Trait Implementations

impl RefUnwindSafe for ToolbarStyle

impl Send for ToolbarStyle

impl Sync for ToolbarStyle

impl Unpin for ToolbarStyle

impl UnwindSafe for ToolbarStyle

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.