vm-ch 2.0.2

cloud-hypervisor backend for Hanzo VM
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
/// Placeholder — memory balloon is not yet implemented for KVM.
/// Kept for API compatibility with vm-darwin.
pub struct VirtioMemoryBalloonDevice;

impl VirtioMemoryBalloonDevice {
    pub fn new() -> Self {
        VirtioMemoryBalloonDevice
    }
}

impl Default for VirtioMemoryBalloonDevice {
    fn default() -> Self {
        Self::new()
    }
}