fxfs_platform/fuchsia.rs
1// Copyright 2021 The Fuchsia Authors. All rights reserved.
2// Use of this source code is governed by a BSD-style license that can be
3// found in the LICENSE file.
4
5pub mod component;
6mod debug;
7mod device;
8pub mod directory;
9mod dirent_cache;
10mod errors;
11pub mod file;
12pub mod fxblob;
13mod memory_pressure;
14pub mod node;
15mod paged_object_handle;
16pub mod pager;
17pub mod profile;
18mod remote_crypt;
19mod symlink;
20pub mod volume;
21pub mod volumes_directory;
22
23#[cfg(test)]
24mod inline_encryption;
25
26#[cfg(any(test, feature = "testing"))]
27pub mod testing;
28
29pub use remote_crypt::RemoteCrypt;