(&self)
| 501 | } |
| 502 | |
| 503 | pub fn buf_alloc(&self) -> u32 { |
| 504 | LittleEndian::read_u32(&self.hdr()[HDROFF_BUF_ALLOC..]) |
| 505 | } |
| 506 | |
| 507 | pub fn set_buf_alloc(&mut self, buf_alloc: u32) -> &mut Self { |
| 508 | LittleEndian::write_u32(&mut self.hdr_mut()[HDROFF_BUF_ALLOC..], buf_alloc); |
no test coverage detected