(name: &'static str, detail: impl Into<String>)
| 656 | } |
| 657 | |
| 658 | fn error(name: &'static str, detail: impl Into<String>) -> Self { |
| 659 | Self { |
| 660 | name, |
| 661 | detail: detail.into(), |
| 662 | level: CheckLevel::Error, |
| 663 | } |
| 664 | } |
| 665 | } |
| 666 | |
| 667 | enum CheckLevel { |
no outgoing calls
no test coverage detected