Open overcat opened 2 months ago
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?
Write
Cursor<Vec<u8>>
If possible, can we add this implementation?
impl Write for Cursor<Vec<u8>> { // todo }
Hi @bbqsrc, if possible, I'd be happy to contribute this implementation.
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?