dialog 0.3.0

Display dialog boxes using various backends
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
// Copyright (C) 2019 Robin Krahl <robin.krahl@ireas.org>
// SPDX-License-Identifier: MIT

use dialog::backends;
use dialog::DialogBox;

fn main() -> dialog::Result<()> {
    let backend = backends::Stdio::new();

    dialog::Message::new("This is a message.")
        .title("And this is a title:")
        .show_with(&backend)
}