(&mut self, bytes: &[u8])
| 40 | } |
| 41 | |
| 42 | pub fn push_slice(&mut self, bytes: &[u8]) { |
| 43 | self.0.extend_from_slice(bytes); |
| 44 | } |
| 45 | |
| 46 | pub fn push_string(&mut self, string: String) { |
| 47 | self.0.append(&mut string.into_bytes()); |
no outgoing calls
no test coverage detected