tauri-plugin-toast 0.0.2

A Tauri plugin for showing toast notifications on Android
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
use serde::{Deserialize, Serialize};

#[derive(Debug, Deserialize, Serialize)]
#[serde(rename_all = "camelCase")]
pub struct ToastRequest {
  pub message: String,
  pub duration: Option<String>, // "short" or "long"
}

#[derive(Debug, Clone, Default, Deserialize, Serialize)]
#[serde(rename_all = "camelCase")]
pub struct ToastResponse {
  pub success: bool,
}