(&self, context: &mut WriteContext)
| 31 | |
| 32 | impl<T: Serializer + ForyDefault + Eq + std::hash::Hash> Serializer for HashSet<T> { |
| 33 | fn fory_write_data(&self, context: &mut WriteContext) -> Result<(), Error> { |
| 34 | write_collection_data(self, context, false) |
| 35 | } |
| 36 | |
| 37 | fn fory_write_data_generic( |
| 38 | &self, |
nothing calls this directly
no test coverage detected