[][src]Enum gtk::ButtonsType

#[non_exhaustive]pub enum ButtonsType {
    None,
    Ok,
    Close,
    Cancel,
    YesNo,
    OkCancel,
    // some variants omitted
}

Prebuilt sets of buttons for the dialog. If none of these choices are appropriate, simply use ButtonsType::None then call DialogExt::add_buttons.

Please note that ButtonsType::Ok, ButtonsType::YesNo and ButtonsType::OkCancel are discouraged by the GNOME Human Interface Guidelines.

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

no buttons at all

Ok

an OK button

Close

a Close button

Cancel

a Cancel button

YesNo

Yes and No buttons

OkCancel

OK and Cancel buttons

Trait Implementations

impl Clone for ButtonsType[src]

impl Copy for ButtonsType[src]

impl Debug for ButtonsType[src]

impl Display for ButtonsType[src]

impl Eq for ButtonsType[src]

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

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

impl Hash for ButtonsType[src]

impl Ord for ButtonsType[src]

impl PartialEq<ButtonsType> for ButtonsType[src]

impl PartialOrd<ButtonsType> for ButtonsType[src]

impl SetValue for ButtonsType[src]

impl StaticType for ButtonsType[src]

impl StructuralEq for ButtonsType[src]

impl StructuralPartialEq for ButtonsType[src]

Auto Trait Implementations

impl RefUnwindSafe for ButtonsType

impl Send for ButtonsType

impl Sync for ButtonsType

impl Unpin for ButtonsType

impl UnwindSafe for ButtonsType

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.