(
&self,
context: &mut WriteContext,
has_generics: bool,
)
| 35 | } |
| 36 | |
| 37 | fn fory_write_data_generic( |
| 38 | &self, |
| 39 | context: &mut WriteContext, |
| 40 | has_generics: bool, |
| 41 | ) -> Result<(), Error> { |
| 42 | write_collection_data(self, context, has_generics) |
| 43 | } |
| 44 | |
| 45 | fn fory_write_type_info(context: &mut WriteContext) -> Result<(), Error> { |
| 46 | write_collection_type_info(context, TypeId::SET as u32) |
nothing calls this directly
no test coverage detected