Expand description
Standard-library-backed production adapters for seams-rs-core.
SystemClockwrapsstd::time::SystemTime::now.StdSleeperwrapsstd::thread::sleep.StdSpawnerwrapsstd::thread::spawn.StdFileSystemwrapsstd::fs::*.TokioFileSystemwrapstokio::fs::*.
Re-exports§
pub use fs::StdFileSystem;pub use fs::TokioFileSystem;
Modules§
- fs
StdFileSystemandTokioFileSystem: thin wrappers aroundstd::fsandtokio::fsimplementing theseams-rs-coreport surface. Every method delegates directly with no logic of its own.
Structs§
- StdSleeper
- Sleeper backed by
std::thread::sleep. - StdSpawner
- Spawner backed by
std::thread::spawn. - System
Clock - Clock driven by
SystemTime::now+Instant::now.