1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
//! Storage simulation and configuration.
//!
//! This module provides simulated storage that integrates with the
//! deterministic simulation engine for testing disk I/O patterns and faults.
/// Storage configuration and settings
/// Storage error types
/// Storage operation events
/// Storage file implementation
/// Future types for async storage operations
/// In-memory storage with deterministic fault injection
/// Storage provider implementation
use io;
/// Create an io::Error for simulation shutdown.
///
/// Used by storage futures and file operations when the simulation has been dropped.
pub
// Re-export error
pub use StorageError;
// Re-export configuration
pub use StorageConfiguration;
// Re-export events
pub use StorageOperation;
// Re-export file
pub use SimStorageFile;
// Re-export memory storage
pub use ;
// Re-export provider
pub use SimStorageProvider;