(vm_config: &mut VmConfig)
| 1789 | } |
| 1790 | |
| 1791 | fn apply_landlock(vm_config: &mut VmConfig) -> result::Result<(), LandlockError> { |
| 1792 | vm_config.apply_landlock()?; |
| 1793 | Ok(()) |
| 1794 | } |
| 1795 | |
| 1796 | impl RequestHandler for Vmm { |
| 1797 | fn vm_create(&mut self, config: Box<VmConfig>) -> result::Result<(), VmError> { |
no test coverage detected