We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents 4712cd2 + a82e348 commit 32f7428Copy full SHA for 32f7428
src/fs/fuse.rs
@@ -895,7 +895,7 @@ impl Drop for FuseFileHandleInner {
895
}
896
897
898
-struct FuseFileHandle(pub Arc<Mutex<FuseFileHandleInner>>);
+struct FuseFileHandle(Arc<Mutex<FuseFileHandleInner>>);
899
900
impl FuseFileHandle {
901
pub fn new() -> Self {
src/fs/uhyve.rs
@@ -98,7 +98,7 @@ impl Drop for UhyveFileHandleInner {
98
99
100
101
-struct UhyveFileHandle(pub Arc<Mutex<UhyveFileHandleInner>>);
+struct UhyveFileHandle(Arc<Mutex<UhyveFileHandleInner>>);
102
103
impl UhyveFileHandle {
104
pub fn new(fd: i32) -> Self {
0 commit comments