robo-todd opened a new issue, #2957: URL: https://github.com/apache/fory/issues/2957
### Feature Request I would like to use the row format but work into and out of a buffer. The current to_row() implementation creates its own Vec<u8> internally, and I'd like it to work with a provided slice or Writer instead. ### Is your feature request related to a problem? Please describe _No response_ ### Describe the solution you'd like Ideally the row formatting would have an API that is parallel to the existing buffer serialization api: - to_row() would get a to_row_in() that is parallel to serialize_to(). - from_row() would get a from_row_from() that is parallel to serialize_from() ### Describe alternatives you've considered There is no way to accomplish this without relying on internal implementation details of fory. I could "hack" it by basically trying to implement my own to_row() function and then use slices with existing from_row() function but it would seem that a parallel API would be cleaner for users. ### Additional context _No response_ -- This is an automated message from the Apache Git Service. To respond to the message, please log on to GitHub and use the URL above to go to the specific comment. To unsubscribe, e-mail: [email protected] For queries about this service, please contact Infrastructure at: [email protected] --------------------------------------------------------------------- To unsubscribe, e-mail: [email protected] For additional commands, e-mail: [email protected]
