| 21 | #[derive(Debug)] |
| 22 | #[non_exhaustive] |
| 23 | pub enum DetectorKind { |
| 24 | All, |
| 25 | Deadlock, |
| 26 | AtomicityViolation, |
| 27 | Memory, |
| 28 | Panic, |
| 29 | // More to be supported. |
| 30 | } |
| 31 | |
| 32 | fn make_options_parser<'help>() -> Command<'help> { |
| 33 | let parser = Command::new("LOCKBUD") |
nothing calls this directly
no outgoing calls
no test coverage detected