derive Debug for multi_iterator_scanner::ProcessingDecision (#31312)

This commit is contained in:
Andrew Fitzgerald 2023-04-26 08:53:31 -07:00 committed by GitHub
parent 18aa54a4b6
commit 2d91c52373
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 1 additions and 0 deletions

View File

@ -14,6 +14,7 @@
//!
/// Output from the element checker used in `MultiIteratorScanner::iterate`.
#[derive(Debug)]
pub enum ProcessingDecision {
/// Should be processed by the scanner.
Now,