Zakir032002 opened a new pull request, #3369: URL: https://github.com/apache/fory/pull/3369
## Summary Introduces streaming deserialization support for the Rust implementation of Fory, mirroring the C++ `ForyInputStreamBuf` model. ## Changes - **`stream.rs`** — New `ForyStreamBuf` struct and `Reader::from_stream` for incremental stream-backed deserialization from any `Read` source - **`buffer.rs`** — Extended to support stream-backed buffer operations - **`fory.rs`** — Wired up stream reader support - **`lib.rs`** — Exported new stream module - **`stream_test.rs`** — Integration tests for stream deserialization ## Design - Preserves existing in-memory fast path with zero overhead - Works with any `std::io::Read` source (files, sockets, byte slices) - Mirrors C++ `ForyInputStreamBuf` from PR #3307 Closes #3300 -- 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]
