Struct rfd::AsyncFileDialog[][src]

pub struct AsyncFileDialog { /* fields omitted */ }

Implementations

impl AsyncFileDialog[src]

pub fn new() -> Self[src]

New file dialog builder

pub fn add_filter(mut self: Self, name: &str, extensions: &[&str]) -> Self[src]

Add file extension filter.

Takes in the name of the filter, and list of extensions

Name of the filter will be displayed on supported platforms

  • Windows
  • Linux

On platforms that don't support filter names, all filters will be merged into one filter

pub fn set_directory<P: AsRef<Path>>(mut self: Self, path: &P) -> Self[src]

Set starting directory of the dialog.

Supported Platforms:

  • Linux
  • Windows
  • Mac

impl AsyncFileDialog[src]

pub fn pick_file(self) -> impl Future<Output = Option<FileHandle>>[src]

Pick one file

pub fn pick_files(self) -> impl Future<Output = Option<Vec<FileHandle>>>[src]

Pick multiple files

pub fn pick_folder(self) -> impl Future<Output = Option<FileHandle>>[src]

Pick one folder

Does not exist in WASM32

pub fn save_file(self) -> impl Future<Output = Option<FileHandle>>[src]

Opens save file dialog

Does not exist in WASM32

Trait Implementations

impl Default for AsyncFileDialog[src]

Auto Trait Implementations

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