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
/// Type passed to the `on_mismatch` function, which is called when the control
/// and experimental methods create different values.
/// A `MismatchHandler` resolves differences between the control and experimental
/// values. If the two values differ, then `on_mismatch` is called. This function
/// is used to determine which value should be passed back to the aplication, and
/// possibly do some extra logging or recording if desired.
/// A mismatch handler which always returns the value from the control function
/// and does nothing else.
;
/// FnTrait is a MismatchHandler that wraps a closure
F);