| 6 | |
| 7 | #[derive(serde::Serialize)] |
| 8 | pub 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)] |
| 18 | pub struct Dictionary { |
nothing calls this directly
no outgoing calls
no test coverage detected