retrom_plugin_config/
error.rs1use serde::{ser::Serializer, Serialize};
2
3pub type Result<T> = std::result::Result<T, Error>;
4
5#[derive(Debug, thiserror::Error)]
6pub enum Error {
7 #[error(transparent)]
8 Io(#[from] std::io::Error),
9
10 #[error(transparent)]
11 SerdeJson(#[from] serde_json::Error),
12
13 #[error(transparent)]
14 Tauri(#[from] tauri::Error),
15
16 #[error(transparent)]
17 ParseConfig(#[from] config::ConfigError),
18
19 #[error(transparent)]
20 DecodeError(#[from] prost::DecodeError),
21}
22
23impl Serialize for Error {
24 fn serialize<S>(&self, serializer: S) -> std::result::Result<S::Ok, S::Error>
25 where
26 S: Serializer,
27 {
28 serializer.serialize_str(self.to_string().as_ref())
29 }
30}