Tracking issue: impl AsyncReadRent
and AsyncWriteRent
for in-memory std buffer types
#310
Open
5 of 11 tasks
Labels
Is your feature request related to a problem? Please describe.
I want to have
AsyncReadRent
andAsyncWriteRent
implemented for in-memory std buffer types, likeVec<u8>
,Cursor
for testing purposes.Describe the solution you'd like
Similar to what Tokio does:
Vec<u8>
Cursor<&mut Vec<u8>>
Cursor<&mut [u8]>
Cursor<Box<[u8]>>
Cursor<Vec<u8>>
&mut T
Box<T>
&[u8]
Cursor<T>
&mut [T]
Box<T>
Describe alternatives you've considered
No
Additional context
AsyncReadRent
has been implemented for&[u8]
The text was updated successfully, but these errors were encountered: