keramics_vfs/
lib.rs

1/* Copyright 2024-2025 Joachim Metz <joachim.metz@gmail.com>
2 *
3 * Licensed under the Apache License, Version 2.0 (the "License");
4 * you may not use this file except in compliance with the License. You may
5 * obtain a copy of the License at https://www.apache.org/licenses/LICENSE-2.0
6 *
7 * Unless required by applicable law or agreed to in writing, software
8 * distributed under the License is distributed on an "AS IS" BASIS, WITHOUT
9 * WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the
10 * License for the specific language governing permissions and limitations
11 * under the License.
12 */
13
14mod context;
15mod data_fork;
16mod enums;
17mod file_entry;
18mod file_resolver;
19mod file_system;
20mod iterators;
21mod location;
22mod path;
23mod string;
24mod string_path;
25mod types;
26
27// Format specific back-ends.
28mod apm;
29mod ewf;
30mod fake;
31mod gpt;
32mod mbr;
33mod os;
34mod qcow;
35mod sparseimage;
36mod udif;
37mod vhd;
38mod vhdx;
39
40// Helpers.
41mod finder;
42mod resolver;
43mod scanner;
44
45pub use context::VfsContext;
46pub use data_fork::VfsDataFork;
47pub use enums::*;
48pub use file_entry::VfsFileEntry;
49pub use file_resolver::{VfsFileResolver, new_vfs_file_resolver};
50pub use file_system::VfsFileSystem;
51pub use finder::VfsFinder;
52pub use location::{VfsLocation, new_os_vfs_location};
53pub use path::VfsPath;
54pub use resolver::VfsResolver;
55pub use scanner::{VfsScanContext, VfsScanNode, VfsScanner, VfsScannerMediator};
56pub use string::VfsString;
57pub use types::*;