File tree Expand file tree Collapse file tree 1 file changed +2
-2
lines changed Expand file tree Collapse file tree 1 file changed +2
-2
lines changed Original file line number Diff line number Diff line change @@ -38,12 +38,12 @@ pub const DEFAULT_MAX_SIZE: usize = 1_048_576;
38
38
/// The [`State`] of the fuzzer.
39
39
/// Contains all important information about the current run.
40
40
/// Will be used to restart the fuzzing process at any time.
41
- pub trait State : UsesInput + Serialize + DeserializeOwned { }
41
+ pub trait State : UsesInput + Serialize + DeserializeOwned + MaybeHasClientPerfMonitor { }
42
42
43
43
/// Structs which implement this trait are aware of the state. This is used for type enforcement.
44
44
pub trait UsesState : UsesInput < Input = <Self :: State as UsesInput >:: Input > {
45
45
/// The state known by this type.
46
- type State : UsesInput ;
46
+ type State : State ;
47
47
}
48
48
49
49
// blanket impl which automatically defines UsesInput for anything that implements UsesState
You can’t perform that action at this time.
0 commit comments