Struct native_dialog::FileDialog[][src]

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(mut self: 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(mut self: Self) -> Self[src]

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

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

Sets the default location that the dialog shows at open.

pub fn reset_location(mut self: 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(
    mut self: 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(mut self: Self) -> Self[src]

Removes all file type filters.

pub fn set_owner<W: HasRawWindowHandle>(mut self: Self, window: &W) -> Self[src]

Sets the owner of the dialog. On Unix and GNU/Linux, this is a no-op.

pub unsafe fn set_owner_handle(mut self: Self, handle: RawWindowHandle) -> Self[src]

Sets the owner of the dialog by raw handle. It's the caller's responsibility that ensuring the handle is valid. On Unix and GNU/Linux, this is a no-op.

pub fn reset_owner(mut self: Self) -> Self[src]

Resets the owner of the dialog to nothing.

pub fn show_open_single_file(self) -> Result<Option<PathBuf>>[src]

Shows a dialog that let users to open one file.

pub fn show_open_multiple_file(self) -> Result<Vec<PathBuf>>[src]

Shows a dialog that let users to open multiple files.

pub fn show_open_single_dir(self) -> Result<Option<PathBuf>>[src]

Shows a dialog that let users to open one directory.

pub fn show_save_single_file(self) -> Result<Option<PathBuf>>[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.