(
first_lock_type: String,
first_lock_span: String,
second_lock_type: String,
second_lock_span: String,
callchains: Vec<Vec<Vec<String>>>,
)
| 18 | |
| 19 | impl DeadlockDiagnosis { |
| 20 | pub fn new( |
| 21 | first_lock_type: String, |
| 22 | first_lock_span: String, |
| 23 | second_lock_type: String, |
| 24 | second_lock_span: String, |
| 25 | callchains: Vec<Vec<Vec<String>>>, |
| 26 | ) -> Self { |
| 27 | Self { |
| 28 | first_lock_type, |
| 29 | first_lock_span, |
| 30 | second_lock_type, |
| 31 | second_lock_span, |
| 32 | callchains, |
| 33 | } |
| 34 | } |
| 35 | } |
| 36 | |
| 37 | #[derive(Debug, Serialize)] |
nothing calls this directly
no outgoing calls
no test coverage detected