(
id: impl Into<String>,
project_kind: impl Into<String>,
description: impl Into<String>,
commands: Vec<VerificationCommand>,
)
| 124 | |
| 125 | impl VerificationPreset { |
| 126 | pub fn new( |
| 127 | id: impl Into<String>, |
| 128 | project_kind: impl Into<String>, |
| 129 | description: impl Into<String>, |
| 130 | commands: Vec<VerificationCommand>, |
| 131 | ) -> Self { |
| 132 | Self { |
| 133 | id: id.into(), |
| 134 | project_kind: project_kind.into(), |
| 135 | description: description.into(), |
| 136 | commands, |
| 137 | } |
| 138 | } |
| 139 | } |
| 140 | |
| 141 | impl VerificationCommand { |
nothing calls this directly
no test coverage detected