macro_rules! impl_from_deserializer_err_wrapped { ($err: ident) => { impl From<::xml_stinks::deserializer::Error<::std::convert::Infallible>> for $err { fn from( err: ::xml_stinks::deserializer::Error<::std::convert::Infallible>, ) -> Self { Self::DeserializationFailed(err.into()) } } }; } pub(crate) use impl_from_deserializer_err_wrapped;