aboutsummaryrefslogtreecommitdiff
path: root/src/house.rs
diff options
context:
space:
mode:
authorCara Salter <cara@devcara.com>2022-04-19 15:49:21 -0400
committerCara Salter <cara@devcara.com>2022-04-19 15:49:21 -0400
commit5978befd317189f1f18dddbab3db7ddd0061c236 (patch)
tree04fc503eb0f221e8a1f8b37729899d8c0d3e20cb /src/house.rs
parentc03b90b286b9193062f2d79a8bfefcdc43881f53 (diff)
downloadsolarlib-5978befd317189f1f18dddbab3db7ddd0061c236.tar.gz
solarlib-5978befd317189f1f18dddbab3db7ddd0061c236.zip
house: Add unimplemented introduce function
Will be used to create new VMs on a host
Diffstat (limited to 'src/house.rs')
-rw-r--r--src/house.rs5
1 files changed, 5 insertions, 0 deletions
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)]