From 5978befd317189f1f18dddbab3db7ddd0061c236 Mon Sep 17 00:00:00 2001 From: Cara Salter Date: Tue, 19 Apr 2022 15:49:21 -0400 Subject: house: Add unimplemented introduce function Will be used to create new VMs on a host --- src/house.rs | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/src/house.rs b/src/house.rs index 64d8faf..06dd62f 100644 --- a/src/house.rs +++ b/src/house.rs @@ -64,6 +64,11 @@ impl House { } } } + + /// TODO: Implement and figure out what the hell I need to define one of these + pub fn introduce(&mut self, name: String, max_mem: Memory, max_cpus: CpuCount) -> Result<&Waifu, Error> { + unimplemented!(); + } } #[cfg(test)] -- cgit v1.2.3