Replies: 1 comment
-
Ok, this design doesn't work for many limiations from rust. |
Beta Was this translation helpful? Give feedback.
0 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
-
I've made numerous updates to
oio::Read
andoio::Write
, learning a great deal with each refactor. Each one has been unique and incremental because we can't overhaul them all at once, and I've had to familiarize myself with the design's limitations and advantages. I believe this will be the final iteration. If it performs well, we'll aim to move this design towards release.Current Design
use
async fn
for more readable:Proposed Design
Motivation
oio::Buffer
since we can write intoBufMut
directly.impl Buf
andimpl BufMut
.futures::AsyncRead
orfutures::AsyncWrite
.Status
I'm working on the PoC and to test if proposed design works.
Beta Was this translation helpful? Give feedback.
All reactions