| |
| |
| |
|
|
| use serde::{Serialize, Serializer}; |
|
|
| pub type Result<T> = std::result::Result<T, Error>; |
|
|
| |
| #[derive(thiserror::Error, Debug)] |
| #[non_exhaustive] |
| pub enum Error { |
| #[error("Failed to serialize store. {0}")] |
| Serialize(Box<dyn std::error::Error + Send + Sync>), |
| #[error("Failed to deserialize store. {0}")] |
| Deserialize(Box<dyn std::error::Error + Send + Sync>), |
| |
| #[error(transparent)] |
| Json(#[from] serde_json::Error), |
| |
| #[error(transparent)] |
| Io(#[from] std::io::Error), |
| |
| |
| |
| |
| #[error("Serialize Function \"{0}\" not found")] |
| SerializeFunctionNotFound(String), |
| |
| #[error("Deserialize Function \"{0}\" not found")] |
| DeserializeFunctionNotFound(String), |
| |
| #[error(transparent)] |
| Tauri(#[from] tauri::Error), |
| } |
|
|
| impl Serialize for Error { |
| fn serialize<S>(&self, serializer: S) -> std::result::Result<S::Ok, S::Error> |
| where |
| S: Serializer, |
| { |
| serializer.serialize_str(self.to_string().as_ref()) |
| } |
| } |
|
|