(encoding: impl fmt::Display, f: &mut fmt::Formatter<'_>)
| 45 | #[cold] |
| 46 | #[inline(never)] |
| 47 | fn feature_error_fmt(encoding: impl fmt::Display, f: &mut fmt::Formatter<'_>) -> fmt::Result { |
| 48 | write!(f, "Content-Encoding: {encoding} is not supported.") |
| 49 | } |
| 50 | |
| 51 | impl error::Error for FeatureError {} |
| 52 |