(&mut self, slice: &[u8])
| 758 | |
| 759 | impl Write for Vec<u8> { |
| 760 | fn write_slice(&mut self, slice: &[u8]) { |
| 761 | self.extend_from_slice(slice) |
| 762 | } |
| 763 | } |
| 764 | |
| 765 | pub(crate) fn write_len<W: Write>(buf: &mut W, len: usize) { |
no outgoing calls
no test coverage detected