(&mut self, p: &P)
| 22 | |
| 23 | #[inline(always)] |
| 24 | fn encode(&mut self, p: &P) { |
| 25 | let t = bytemuck::must_cast(*p); |
| 26 | unsafe { self.0.push_unchecked(t) }; |
| 27 | } |
| 28 | } |
| 29 | |
| 30 | impl<T: Int> Buffer for IntEncoder<T> { |
nothing calls this directly
no test coverage detected