(&mut self)
| 122 | /// Get a pointer to write to without incrementing length. |
| 123 | #[inline(always)] |
| 124 | pub fn end_ptr(&mut self) -> *mut T { |
| 125 | debug_assert!(self.end <= self.capacity); |
| 126 | self.end |
| 127 | } |
| 128 | |
| 129 | /// Set the end_ptr after mutating it. |
| 130 | #[inline(always)] |
no outgoing calls
no test coverage detected