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

Class MultiStream

hail-fuzz/src/input.rs:62–67  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

60/// Represents an input source where every MMIO access is read from a global input stream.
61#[derive(Default)]
62pub struct MultiStream {
63 /// A mapping from MMIO address to the target input stream.
64 pub streams: HashMap<StreamKey, StreamData>,
65 pub last_read: Option<StreamKey>,
66 pub tracer: Option<Box<dyn IoTracerAny>>,
67}
68
69impl std::fmt::Debug for MultiStream {
70 fn fmt(&self, f: &mut std::fmt::Formatter<'_>) -> std::fmt::Result {

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected