pub trait Select: Debug {
    type Selection: Debug;

    const SELECT_MULTIPLE: bool;

    // Required method
    fn select(dialog: &FileChooserNative) -> Self::Selection;
}
Expand description

Type of selection used for the open dialog.

Required Associated Types§

source

type Selection: Debug

Output of the selection.

Required Associated Constants§

source

const SELECT_MULTIPLE: bool

Whether to select multiple files inside the dialog.

Required Methods§

source

fn select(dialog: &FileChooserNative) -> Self::Selection

Construct selection from the file chooser.

Implementors§