show

Function show 

Source
pub fn show<T: Options>(text: &str) -> Result<T>
Expand description

Shows a message box with a specified text to be displayed.

For more options see MessageBox.

Examples found in repository?
examples/minimal.rs (line 4)
3fn main() {
4    assert_eq!(win_msgbox::show::<Okay>("Hello World"), Ok(Okay));
5}