MCPcopy Create free account
hub / github.com/MultiFuzz/MultiFuzz / IoTracer

Interface IoTracer

hail-fuzz/src/debugging/trace.rs:26–30  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

24}
25
26pub trait IoTracer {
27 fn read(&mut self, addr: StreamKey, value: &[u8]);
28 fn snapshot(&self) -> Box<dyn std::any::Any>;
29 fn restore(&mut self, snapshot: &Box<dyn std::any::Any>);
30}
31
32pub trait IoTracerAny: IoTracer + Send + Sync + 'static {
33 fn as_any(&self) -> &dyn std::any::Any;

Callers

nothing calls this directly

Implementers 1

trace.rshail-fuzz/src/debugging/trace.rs

Calls

no outgoing calls

Tested by

no test coverage detected