pub trait PartitionMemoryMapper {
// Required method
fn memory_mapper(&self, vtl: Vtl) -> Arc<dyn PartitionMemoryMap>;
}
Required Methods§
Sourcefn memory_mapper(&self, vtl: Vtl) -> Arc<dyn PartitionMemoryMap>
fn memory_mapper(&self, vtl: Vtl) -> Arc<dyn PartitionMemoryMap>
Returns a memory mapper for the partition backing vtl
.