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

Class DictionaryItem

hail-fuzz/src/dictionary.rs:8–15  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

6
7#[derive(serde::Serialize)]
8pub struct DictionaryItem {
9 /// The value in the dictionary.
10 pub value: Vec<u8>,
11 /// The number of times the fuzzer attempted to add this value to the dictionary.
12 pub count: usize,
13 /// Bit flags corresponding the strides seen for this value.
14 pub strides: u8,
15}
16
17#[derive(Default)]
18pub struct Dictionary {

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected