Skip to main content

tauri_plugin_android_fs/models/
notification.rs

1
2/// Icon type used for notification UI.
3/// 
4/// # TypeScript
5///
6/// ```ts
7/// // NOTE: New variants may be added in the future
8/// type NotificationIcon = "App" | "Download" | "Upload" | "Save";
9/// ```
10#[derive(Debug, Clone, Copy, Hash, PartialEq, Eq, serde::Deserialize, serde::Serialize)]
11#[non_exhaustive]
12pub enum ProgressNotificationIcon {
13    Download,
14    Upload,
15    Save,
16    App,
17}