You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Currently, trait Write is not implemented for Cursor<Vec<u8>> in cursor.rs. However, the standard library includes it. Is there a specific reason why this library doesn't support it?
If possible, can we add this implementation?
impl Write for Cursor<Vec<u8>> {
// todo
}
The text was updated successfully, but these errors were encountered:
Hi @bbqsrc, if possible, I'd be happy to contribute this implementation.
overcat
changed the title
Trait Write is not implemented for Cursor<Vec<u8>>
Trait Write is not implemented for Cursor<Vec<u8>> and Cursor<&mut Vec<u8>>Sep 11, 2024
Currently, trait
Write
is not implemented forCursor<Vec<u8>>
in cursor.rs. However, the standard library includes it. Is there a specific reason why this library doesn't support it?If possible, can we add this implementation?
The text was updated successfully, but these errors were encountered: