summaryrefslogtreecommitdiff
path: root/examples/ext2.rs
diff options
context:
space:
mode:
authorAlejandro Soto <alejandro@34project.org>2022-01-08 07:46:54 -0600
committerAlejandro Soto <alejandro@34project.org>2022-01-08 07:46:54 -0600
commit3f07297b0f4372e234ffe2b8bccc46312e9b68f8 (patch)
treeef4ceabf82e81c679b7be85d1b527e6a63ee0037 /examples/ext2.rs
parentfffebe5facf7b88c89c7aaa9385aa845f161e6f1 (diff)
Move Ino, Ttl, Timestamp to crate::io
Diffstat (limited to 'examples/ext2.rs')
-rw-r--r--examples/ext2.rs4
1 files changed, 2 insertions, 2 deletions
diff --git a/examples/ext2.rs b/examples/ext2.rs
index cceea76..da60a1e 100644
--- a/examples/ext2.rs
+++ b/examples/ext2.rs
@@ -23,11 +23,11 @@ use std::{
};
use blown_fuse::{
- io::{Attrs, Entry, EntryType, FsInfo, Gid, Known, Mode, Stat, Uid},
+ io::{Attrs, Entry, EntryType, FsInfo, Gid, Ino, Known, Mode, Stat, Ttl, Uid},
mount::{mount_sync, Options},
ops,
session::{Dispatch, Start},
- Done, Errno, FuseResult, Ino, Op, Ttl,
+ Done, Errno, FuseResult, Op,
};
use bytemuck::{cast_slice, from_bytes, try_from_bytes};