native-dialog 0.9.6

A library to display dialogs. Supports GNU/Linux, BSD Unix, macOS and Windows.
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
#![doc = include_str!("../README.md")]

pub(crate) mod builder;
pub(crate) mod dialog;
pub(crate) mod errors;
pub(crate) mod ffi;
pub(crate) mod utils;

pub use builder::*;
pub use dialog::Dialog;
pub use dialog::file::*;
pub use dialog::message::*;
pub use errors::*;