error handling

This commit is contained in:
Candifloss 2024-09-27 12:16:31 +05:30
parent a6b95bad57
commit 4dfa6e4d3d

View File

@ -3,7 +3,7 @@ use crate::notification::Notification;
use rson_rs::ser::to_string as rson_string; use rson_rs::ser::to_string as rson_string;
impl Notification { impl Notification {
pub fn rson(&self) -> String { pub fn rson(&self) -> Result<String, String> {
rson_string(&self).unwrap() rson_string(self).map_err(|e| format!("Failed to serialize to RSON: {}", e))
} }
} }