(&self, f: &mut std::fmt::Formatter<'_>)
| 18 | |
| 19 | impl std::fmt::Display for Error { |
| 20 | fn fmt(&self, f: &mut std::fmt::Formatter<'_>) -> std::fmt::Result { |
| 21 | match self { |
| 22 | Error::LifterError => f.write_str("Error lifting child blocks"), |
| 23 | } |
| 24 | } |
| 25 | } |
| 26 | |
| 27 | impl From<DecodeError> for Error { |
nothing calls this directly
no outgoing calls
no test coverage detected