| 36 | /// In release mode, the error is a zero-sized type for efficiency. |
| 37 | #[cfg_attr(test, derive(PartialEq))] |
| 38 | pub struct Error(ErrorImpl); |
| 39 | impl Debug for Error { |
| 40 | fn fmt(&self, f: &mut Formatter<'_>) -> std::fmt::Result { |
| 41 | write!(f, "Error({:?})", self.to_string()) |
no outgoing calls
no test coverage detected