pub trait NotificationHandle{
// Required methods
fn close(&self) -> Result<(), Error>;
fn get_id(&self) -> String;
fn get_user_info(&self) -> &HashMap<String, String>;
}Expand description
A Handle to a sent notification
Required Methods§
Sourcefn get_user_info(&self) -> &HashMap<String, String>
fn get_user_info(&self) -> &HashMap<String, String>
Returns the data stored inside of the notification