summaryrefslogtreecommitdiff
path: root/src/fuse/ops/xattr.rs
diff options
context:
space:
mode:
authorAlejandro Soto <alejandro@34project.org>2022-01-04 06:49:48 -0600
committerAlejandro Soto <alejandro@34project.org>2022-01-04 06:49:52 -0600
commit70baa472b2bee69f205cc1aada304d597b858005 (patch)
tree7a0b1a0381b68fe0e091b87d00634ff13568bf6d /src/fuse/ops/xattr.rs
parent1955ec118a32d3fa174496abe5442c82c609273a (diff)
Move crate::fuse::* to the top-level
Diffstat (limited to '')
-rw-r--r--src/ops/xattr.rs (renamed from src/fuse/ops/xattr.rs)8
1 files changed, 5 insertions, 3 deletions
diff --git a/src/fuse/ops/xattr.rs b/src/ops/xattr.rs
index 48d10bf..886b290 100644
--- a/src/fuse/ops/xattr.rs
+++ b/src/ops/xattr.rs
@@ -1,7 +1,9 @@
-use std::ffi::{CStr, OsStr};
-use crate::{proto, util::OutputChain, Errno};
-use crate::fuse::{private_trait::Sealed, Done, Operation, Reply, Request};
+use crate::{
+ private_trait::Sealed, proto, util::OutputChain, Done, Errno, Operation, Reply, Request,
+};
+
use super::c_to_os;
+use std::ffi::{CStr, OsStr};
pub enum Setxattr {}
pub enum Getxattr {}