turmoil 0.7.2

Simulation testing framework for distributed systems
Documentation
1
2
3
4
5
6
7
8
/// A specialized [`Result`] type for turmoil simulations.
///
/// This type is generally useful for fallible test cases, i.e. where you want
/// to use the `?` operator to fail the test rather than writing unwrap
/// everywhere.
///
/// [`Result`]: std::result::Result
pub type Result<T = ()> = std::result::Result<T, Box<dyn std::error::Error>>;