virt_mshv/
vm_state.rs

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
// Copyright (c) Microsoft Corporation.
// Licensed under the MIT License.

use super::Error;
use crate::MshvPartition;
use virt::x86::vm;
use virt::x86::vm::AccessVmState;

impl AccessVmState for &'_ MshvPartition {
    type Error = Error;

    fn caps(&self) -> &virt::PartitionCapabilities {
        &self.inner.caps
    }

    fn commit(&mut self) -> Result<(), Self::Error> {
        todo!()
    }

    fn hypercall(&mut self) -> Result<vm::HypercallMsrs, Self::Error> {
        todo!()
    }

    fn set_hypercall(&mut self, _value: &vm::HypercallMsrs) -> Result<(), Self::Error> {
        todo!()
    }

    fn reftime(&mut self) -> Result<vm::ReferenceTime, Self::Error> {
        todo!()
    }

    fn set_reftime(&mut self, _value: &vm::ReferenceTime) -> Result<(), Self::Error> {
        todo!()
    }

    fn reference_tsc_page(&mut self) -> Result<vm::ReferenceTscPage, Self::Error> {
        todo!()
    }

    fn set_reference_tsc_page(&mut self, _value: &vm::ReferenceTscPage) -> Result<(), Self::Error> {
        todo!()
    }
}