(
&self,
context: &mut ReadContext,
)
| 1087 | |
| 1088 | #[inline(always)] |
| 1089 | fn deserialize_with_context<T: Serializer + ForyDefault>( |
| 1090 | &self, |
| 1091 | context: &mut ReadContext, |
| 1092 | ) -> Result<T, Error> { |
| 1093 | let result = self.deserialize_with_context_inner::<T>(context); |
| 1094 | context.reset(); |
| 1095 | result |
| 1096 | } |
| 1097 | |
| 1098 | #[inline(always)] |
| 1099 | fn deserialize_with_context_inner<T: Serializer + ForyDefault>( |
no test coverage detected