lambdust 0.1.1

A Scheme dialect with gradual typing and effect systems
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
/// Mock behavior configuration for repository
#[derive(Debug, Clone, Default)]
pub struct MockRepositoryBehavior {
    /// Whether store operations should fail
    pub store_should_fail: bool,
    
    /// Whether find operations should fail
    pub find_should_fail: bool,
    
    /// Simulated storage capacity
    pub max_capacity: Option<usize>,
    
    /// Simulated latency (in milliseconds)
    pub simulated_latency_ms: u64,
}