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

Interface IoTracerAny

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

Source from the content-addressed store, hash-verified

30}
31
32pub trait IoTracerAny: IoTracer + Send + Sync + 'static {
33 fn as_any(&self) -> &dyn std::any::Any;
34 fn as_mut_any(&mut self) -> &mut dyn std::any::Any;
35 fn dyn_clone(&self) -> Box<dyn IoTracerAny>;
36}
37
38impl<T: IoTracer + Send + Sync + 'static + Clone> IoTracerAny for T {
39 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