This module contains writer-based structs and traits.
Because std::io::Write is only limited to std and not core, we provide our own Writer.
std::io::Write
std
core
A helper struct that implements Writer for a &[u8] slice.
Writer
&[u8]
Trait that indicates that a struct can be used as a destination to encode data too. This is used by Encode