win32_notif 0.15.2

Wrapper around Windows UWP XAML (WinRT) Notification api
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
pub mod image;
pub mod progress;
pub mod text;

use crate::ToXML;

pub trait VisualElement {}
pub trait TextOrImageElement: VisualElement + ToXML {}

pub use image::{Image, Placement};
pub use progress::Progress;
pub use text::{AttributionPlacement, Text};