pub struct FileSaveDialogBuilder<'a, 'b, 'c> {
    pub init_com: bool,
    pub default_path: Option<&'a Path>,
    pub path: Option<&'b Path>,
    pub filetypes: FileFilters<'static>,
    pub filename: Option<&'c OsStr>,
}
Expand description

Builder for a FileSaveDialog

Fields§

§init_com: bool

Whether to init com

§default_path: Option<&'a Path>

Path to open by default

§path: Option<&'b Path>

Path to open, regardless of past choices

§filetypes: FileFilters<'static>

File types

§filename: Option<&'c OsStr>

Filename

Implementations§

Make a new FileSaveDialogBuilder

Whether to init com

Set the default path where the dialog will open

Set the path where the dialog will open

Add a file type.

Panics

Panics if the name of filter contain an interior NUL.

Set the default filename

Build a dialog.

Execute a dialog.

Trait Implementations§

Returns the “default value” for a type. Read more

Auto Trait Implementations§

Blanket Implementations§

Gets the TypeId of self. Read more
Immutably borrows from an owned value. Read more
Mutably borrows from an owned value. Read more

Returns the argument unchanged.

Calls U::from(self).

That is, this conversion is whatever the implementation of From<T> for U chooses to do.

The type returned in the event of a conversion error.
Performs the conversion.
The type returned in the event of a conversion error.
Performs the conversion.