use tracing::{Span, instrument};
use crate::hypervisor::virtual_machine::CreateVmError;
#[instrument(skip_all, parent = Span::current(), level = "Trace")]
pub(crate) fn is_hypervisor_present() -> bool {
false
}
#[derive(Debug)]
pub(crate) struct MshvVm {
_placeholder: (),
}
#[allow(unused)]
impl MshvVm {
#[allow(unused)]
pub(crate) fn new() -> std::result::Result<Self, CreateVmError> {
unimplemented!("MshvVm::new")
}
}