(&mut self, mut bytes: Self)
| 36 | } |
| 37 | |
| 38 | pub fn push_bytes(&mut self, mut bytes: Self) { |
| 39 | self.0.append(&mut bytes.0); |
| 40 | } |
| 41 | |
| 42 | pub fn push_slice(&mut self, bytes: &[u8]) { |
| 43 | self.0.extend_from_slice(bytes); |
no outgoing calls
no test coverage detected