pub trait Hypervisor: Send {
    fn try_clone(&self) -> Result<Self>
    where
        Self: Sized
; fn check_capability(&self, cap: HypervisorCap) -> bool; }
Expand description

A trait for checking hypervisor capabilities.

Required Methods§

Makes a shallow clone of this Hypervisor.

Checks if a particular HypervisorCap is available.

Implementors§