pub trait FileChooserExtManual: 'static {
    // Required methods
    fn add_choice(&self, id: &str, label: &str, options: &[(&str, &str)]);
    fn set_current_folder(
        &self,
        file: Option<&impl IsA<File>>
    ) -> Result<bool, Error>;
}
Expand description

Trait containing manually implemented methods of FileChooser.

Required Methods§

source

fn add_choice(&self, id: &str, label: &str, options: &[(&str, &str)])

source

fn set_current_folder( &self, file: Option<&impl IsA<File>> ) -> Result<bool, Error>

Implementors§