Conversation
|
This idea spawned from esp-rs/esp-idf-svc#469 |
|
I think this already exists with https://github.com/rmja/buffered-io? Whether to add it directly to embedded-io is of course another question. |
MabezDev
left a comment
There was a problem hiding this comment.
I personally don't think this belongs inside embedded-io itself.
I do think it is useful though, and I've personally reached for https://github.com/rmja/buffered-io in my own projects. I think it's a question of
- Is it useful/common enough to warrant living in here?
- If so where should it go, a new utility crate?
This is probably something that needs to be discussed in the WG meeting.
I see that
Perhaps into
Let me know what comes of that WG meeting. Happy to make some changes, and perhaps to also replicate some of the ideas from |
|
Interested in this, what would be required to bring it over the finish line? |
std::ioimplements a useful std::io::BufReader.This is my attempt at implementing for
embedded-io.