tauri_plugin_notification::self
Modules:
| Name | Description | 
|---|---|
| ffi | Original FFI interface module. | 
Classes:
| Name | Description | 
|---|---|
| NotificationBuilder | |
| NotificationBuilderArgs | |
| NotificationExt | 
Functions:
| Name | Description | 
|---|---|
| init | 
Attributes:
| Name | Type | Description | 
|---|---|---|
| ImplNotificationExt | TypeAlias | The implementers of  | 
module-attribute
  
¶
ImplNotificationExt: TypeAlias = ImplManager
The implementers of NotificationExt.
module-attribute
  
¶
__all__ = ['ImplNotificationExt', 'NotificationBuilder', 'NotificationBuilderArgs', 'NotificationExt', 'init']
    tauri_plugin_notification::NotificationBuilder
Methods:
| Name | Description | 
|---|---|
| show | Consume this builder and show the notification. | 
show(**kwargs: Unpack[NotificationBuilderArgs]) -> None
Consume this builder and show the notification.
FIXME, XXX, TODO:¶
See: https://github.com/tauri-apps/tauri/issues/3700
On windows, you must install the package via the .msi or nsis, or tauri-plugin-notification will not work.
Tracker issue: https://github.com/tauri-apps/plugins-workspace/issues/2156
Source code in python/pytauri/src/pytauri_plugins/notification/ffi.py
              
    
              Bases: TypedDict
tauri_plugin_notification::NotificationBuilder
Attributes:
| Name | Type | Description | 
|---|---|---|
| id | int |  | 
| channel_id | str |  | 
| title | str |  | 
| body | str |  | 
| large_body | str |  | 
| summary | str |  | 
| action_type_id | str |  | 
| group | str |  | 
| group_summary | bool |  | 
| sound | str |  | 
| inbox_line | str |  | 
| icon | str |  | 
| large_icon | str |  | 
| icon_color | str |  | 
| ongoing | bool |  | 
| auto_cancel | bool |  | 
| silent | bool |  | 
    tauri_plugin_notification::NotificationExt
Methods:
| Name | Description | 
|---|---|
| builder | Create a new notification builder. | 
staticmethod
  
¶
builder(slf: ImplNotificationExt) -> NotificationBuilder