feat(fs): add plugin (#308)

This commit is contained in:
Lucas Fernandes Nogueira
2023-04-16 08:53:19 -03:00
committed by GitHub
parent 775581d824
commit 4539c03f95
21 changed files with 4768 additions and 304 deletions
+22
View File
@@ -0,0 +1,22 @@
use std::path::PathBuf;
use serde::{Serialize, Serializer};
#[derive(Debug, thiserror::Error)]
pub enum Error {
#[error(transparent)]
Io(#[from] std::io::Error),
#[error("forbidden path: {0}")]
PathForbidden(PathBuf),
#[error("failed to resolve path: {0}")]
CannotResolvePath(tauri::path::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())
}
}