[][src]Struct native_dialog::FileDialog

pub struct FileDialog<'a> { /* fields omitted */ }

Builds and shows file dialogs.

Implementations

impl<'a> FileDialog<'a>[src]

pub fn new() -> Self[src]

Creates a file dialog builder.

pub fn set_filename(self, filename: &'a str) -> Self[src]

Sets the default value of the filename text field in the dialog. For open dialogs of macOS and zenity, this is a no-op because there's no such text field on the dialog.

pub fn reset_filename(self) -> Self[src]

Resets the default value of the filename field in the dialog.

pub fn set_location<P: AsRef<Path> + ?Sized>(self, path: &'a P) -> Self[src]

Sets the default location that the dialog shows at open.

pub fn reset_location(self) -> Self[src]

Resets the default location that the dialog shows at open. Without a default location set, the dialog will probably use the current working directory as default location.

pub fn add_filter(self, description: &'a str, extensions: &'a [&'a str]) -> Self[src]

Adds a file type filter. The filter must contains at least one extension, otherwise this method will panic. For dialogs that open directories, this is a no-op.

pub fn remove_all_filters(self) -> Self[src]

Removes all file type filters.

pub fn show_open_single_file(
    self
) -> Result<<OpenSingleFile<'a> as Dialog>::Output>
[src]

Shows a dialog that let users to open one file.

pub fn show_open_multiple_file(
    self
) -> Result<<OpenMultipleFile<'a> as Dialog>::Output>
[src]

Shows a dialog that let users to open multiple files.

pub fn show_open_single_dir(
    self
) -> Result<<OpenSingleDir<'a> as Dialog>::Output>
[src]

Shows a dialog that let users to open one directory.

pub fn show_save_single_file(
    self
) -> Result<<SaveSingleFile<'a> as Dialog>::Output>
[src]

Shows a dialog that let users to save one file.

Trait Implementations

impl<'a> Clone for FileDialog<'a>[src]

impl<'a> Debug for FileDialog<'a>[src]

impl<'_> Default for FileDialog<'_>[src]

Auto Trait Implementations

impl<'a> RefUnwindSafe for FileDialog<'a>[src]

impl<'a> Send for FileDialog<'a>[src]

impl<'a> Sync for FileDialog<'a>[src]

impl<'a> Unpin for FileDialog<'a>[src]

impl<'a> UnwindSafe for FileDialog<'a>[src]

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