Trait imgui_file_explorer::UiFileExplorer[][src]

pub trait UiFileExplorer {
    fn file_explorer<T, S>(
        &self,
        target: T,
        extensions: &[S]
    ) -> Result<Option<PathBuf>>
    where
        T: AsRef<Path>,
        S: AsRef<str>
; }

Required Methods

Can filter over several extensions. Anything that can be treated as a reference to a string AsRef<str> can be used as argument! Return the selected path, if any.

Implementations on Foreign Types

impl<'ui> UiFileExplorer for Ui<'ui>
[src]

Ui extends

Implementors