(err: E, msg: M)
| 576 | /// and annotates it with an informative message. |
| 577 | #[track_caller] |
| 578 | pub fn wrap_with<E, M>(err: E, msg: M) -> Self |
| 579 | where |
| 580 | E: Into<I>, |
| 581 | M: Display, |
| 582 | { |
| 583 | ErrorData::wrap_with(err, msg).into() |
| 584 | } |
| 585 | } |
| 586 | |
| 587 | impl<I> ErrorData<I> { |
nothing calls this directly
no test coverage detected