b3-core 0.4.0

A cross-platform framework that provides access and management of the main elements of a graphical application.
Documentation
1
2
3
4
5
6
7
8
9
10
use crate::ActiveApplication;

pub trait NotificationApi {
    fn show(
        app: &ActiveApplication,
        title: Option<String>,
        message: Option<String>,
        action: Option<String>,
    );
}