Blob of Bytes. Right now it is backed by a `Vec `. But if this becomes a bottleneck we should back it with a custom allocator.
| 7 | /// |
| 8 | /// But if this becomes a bottleneck we should back it with a custom allocator. |
| 9 | pub struct Bytes(Vec<u8>); |
| 10 | |
| 11 | impl Default for Bytes { |
| 12 | fn default() -> Self { |