native-dialog 0.2.2

A library to display dialogs. Supports GNU/Linux, macOS and Windows.
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
pub enum MessageType {
    Info,
    Warning,
    Error,
}

pub struct MessageAlert<'a> {
    pub title: &'a str,
    pub text: &'a str,
    pub typ: MessageType,
}

pub struct MessageConfirm<'a> {
    pub title: &'a str,
    pub text: &'a str,
    pub typ: MessageType,
}