(
&self,
context: &mut WriteContext,
has_generics: bool,
)
| 303 | #[inline(always)] |
| 304 | #[allow(unused_variables)] |
| 305 | fn fory_write_data_generic( |
| 306 | &self, |
| 307 | context: &mut WriteContext, |
| 308 | has_generics: bool, |
| 309 | ) -> Result<(), Error> { |
| 310 | self.fory_write_data(context) |
| 311 | } |
| 312 | |
| 313 | /// **[USER IMPLEMENTATION REQUIRED]** Serialize the type's data to the buffer. |
| 314 | /// |
no test coverage detected