rust/src/libstd/io
Daniel Micay 85c2c2e38c implement Writer for Vec<u8>
The trait has an obvious, sensible implementation directly on vectors so
the MemWriter wrapper is unnecessary. This will halt the trend towards
providing all of the vector methods on MemWriter along with eliminating
the noise caused by conversions between the two types. It also provides
the useful default Writer methods on Vec<u8>.

After the type is removed and code has been migrated, it would make
sense to add a new implementation of MemWriter with seeking support. The
simple use cases can be covered with vectors alone, and ones with the
need for seeks can use a new MemWriter implementation.
2014-11-18 01:09:46 -05:00
..
net Switch to purely namespaced enums 2014-11-17 07:35:51 -08:00
buffered.rs implement Writer for Vec<u8> 2014-11-18 01:09:46 -05:00
comm_adapters.rs Fix fallout from coercion removal 2014-11-17 22:41:33 +13:00
extensions.rs implement Writer for Vec<u8> 2014-11-18 01:09:46 -05:00
fs.rs Return proper errors with update_err 2014-11-17 19:18:26 +02:00
mem.rs implement Writer for Vec<u8> 2014-11-18 01:09:46 -05:00
mod.rs implement Writer for Vec<u8> 2014-11-18 01:09:46 -05:00
pipe.rs Fix fallout from coercion removal 2014-11-17 22:41:33 +13:00
process.rs Switch to purely namespaced enums 2014-11-17 07:35:51 -08:00
result.rs implement Writer for Vec<u8> 2014-11-18 01:09:46 -05:00
stdio.rs Switch to purely namespaced enums 2014-11-17 07:35:51 -08:00
tempfile.rs Register new snapshots 2014-10-10 22:09:49 -07:00
test.rs Rename fail! to panic! 2014-10-29 11:43:07 -04:00
timer.rs Runtime removal: refactor timer 2014-11-08 20:40:39 -08:00
util.rs implement Writer for Vec<u8> 2014-11-18 01:09:46 -05:00