pub trait FileDialogExt {
// Required method
fn file_browser(&self) -> FileBrowser<'_>;
}Expand description
Extend Ui with a file browser entry point
Required Methods§
Sourcefn file_browser(&self) -> FileBrowser<'_>
fn file_browser(&self) -> FileBrowser<'_>
Entry point for showing the file browser widget
Dyn Compatibility§
This trait is dyn compatible.
In older versions of Rust, dyn compatibility was called "object safety".