[][src]Enum gtk::FileChooserConfirmation

#[non_exhaustive]pub enum FileChooserConfirmation {
    Confirm,
    AcceptFilename,
    SelectAgain,
    // some variants omitted
}

Used as a return value of handlers for the FileChooser::confirm-overwrite signal of a FileChooser. This value determines whether the file chooser will present the stock confirmation dialog, accept the user’s choice of a filename, or let the user choose another filename.

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

The file chooser will present its stock dialog to confirm about overwriting an existing file.

AcceptFilename

The file chooser will terminate and accept the user’s choice of a file name.

SelectAgain

The file chooser will continue running, so as to let the user select another file name.

Trait Implementations

impl Clone for FileChooserConfirmation[src]

impl Copy for FileChooserConfirmation[src]

impl Debug for FileChooserConfirmation[src]

impl Display for FileChooserConfirmation[src]

impl Eq for FileChooserConfirmation[src]

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

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

impl Hash for FileChooserConfirmation[src]

impl Ord for FileChooserConfirmation[src]

impl PartialEq<FileChooserConfirmation> for FileChooserConfirmation[src]

impl PartialOrd<FileChooserConfirmation> for FileChooserConfirmation[src]

impl SetValue for FileChooserConfirmation[src]

impl StaticType for FileChooserConfirmation[src]

impl StructuralEq for FileChooserConfirmation[src]

impl StructuralPartialEq for FileChooserConfirmation[src]

Auto Trait Implementations

impl RefUnwindSafe for FileChooserConfirmation

impl Send for FileChooserConfirmation

impl Sync for FileChooserConfirmation

impl Unpin for FileChooserConfirmation

impl UnwindSafe for FileChooserConfirmation

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.