[][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]

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

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

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

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

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

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

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

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

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

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

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.