(&mut self, range: MemoryRange)
| 425 | } |
| 426 | |
| 427 | pub fn push(&mut self, range: MemoryRange) { |
| 428 | self.data.push(range); |
| 429 | } |
| 430 | |
| 431 | pub fn read_from(fd: &mut dyn Read, length: u64) -> Result<MemoryRangeTable, MigratableError> { |
| 432 | assert!((length as usize).is_multiple_of(size_of::<MemoryRange>())); |
no outgoing calls