docs.rs failed to build wfd-0.1.0
Please check the build logs for more information.
See Builds for ideas on how to fix a failed build, or Metadata for how to configure docs.rs builds.
If you believe this is docs.rs' fault, open an issue.
Please check the build logs for more information.
See Builds for ideas on how to fix a failed build, or Metadata for how to configure docs.rs builds.
If you believe this is docs.rs' fault, open an issue.
Visit the last successful build:
wfd-0.1.8
wfd
This crate provides a simple to use abstraction over the Open and Save dialogs in the Windows API, usable under both GNU and MSVC toolchains, with minimal dependencies.
Examples
Standard open dialog
let dialog_result = open_dialog?;
Folder picker open dialog
use ;
let params = DialogParams ;
let dialog_result = open_dialog?;
Save dialog with custom file extension filters
use ;
let params = DialogParams ;
let dialog_result = save_dialog?;
Further examples can be found in src\examples