diff options
Diffstat (limited to 'crates/server/src/vfs.rs')
-rw-r--r-- | crates/server/src/vfs.rs | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/crates/server/src/vfs.rs b/crates/server/src/vfs.rs index a5c367494..2e4319cdb 100644 --- a/crates/server/src/vfs.rs +++ b/crates/server/src/vfs.rs | |||
@@ -11,11 +11,13 @@ use walkdir::WalkDir; | |||
11 | use Result; | 11 | use Result; |
12 | 12 | ||
13 | 13 | ||
14 | #[derive(Debug)] | ||
14 | pub struct FileEvent { | 15 | pub struct FileEvent { |
15 | pub path: PathBuf, | 16 | pub path: PathBuf, |
16 | pub kind: FileEventKind, | 17 | pub kind: FileEventKind, |
17 | } | 18 | } |
18 | 19 | ||
20 | #[derive(Debug)] | ||
19 | pub enum FileEventKind { | 21 | pub enum FileEventKind { |
20 | Add(String), | 22 | Add(String), |
21 | #[allow(unused)] | 23 | #[allow(unused)] |