Clippy Debug fixes (#1261)

This commit is contained in:
Dominik Maier 2023-05-09 17:05:51 +02:00 committed by GitHub
parent 52d557aa8f
commit 0c7d42d28b
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
3 changed files with 3 additions and 0 deletions

View File

@ -304,6 +304,7 @@ pub mod pybind {
/// Python bindings for the `LibAFL` forkserver sugar /// Python bindings for the `LibAFL` forkserver sugar
#[pyclass(unsendable)] #[pyclass(unsendable)]
#[derive(Debug)]
struct ForkserverBytesCoverageSugar { struct ForkserverBytesCoverageSugar {
input_dirs: Vec<PathBuf>, input_dirs: Vec<PathBuf>,
output_dir: PathBuf, output_dir: PathBuf,

View File

@ -365,6 +365,7 @@ pub mod pybind {
/// In-Memory fuzzing made easy. /// In-Memory fuzzing made easy.
/// Use this sugar for scaling `libfuzzer`-style fuzzers. /// Use this sugar for scaling `libfuzzer`-style fuzzers.
#[pyclass(unsendable)] #[pyclass(unsendable)]
#[derive(Debug)]
struct InMemoryBytesCoverageSugar { struct InMemoryBytesCoverageSugar {
input_dirs: Vec<PathBuf>, input_dirs: Vec<PathBuf>,
output_dir: PathBuf, output_dir: PathBuf,

View File

@ -445,6 +445,7 @@ pub mod pybind {
use crate::qemu; use crate::qemu;
#[pyclass(unsendable)] #[pyclass(unsendable)]
#[derive(Debug)]
struct QemuBytesCoverageSugar { struct QemuBytesCoverageSugar {
input_dirs: Vec<PathBuf>, input_dirs: Vec<PathBuf>,
output_dir: PathBuf, output_dir: PathBuf,