struct MsrPassthroughHandler {
    index: u32,
    from: MsrValueFrom,
    msr_file: Rc<RefCell<BTreeMap<usize, Rc<MsrDevFile>>>>,
}
Expand description

MsrPassthroughHandler - passthrough handler that will handle RDMSR/WRMSR by reading/writing MSR file directly. For RDMSR, this handler will give Guest the current MSR value on Host. For WRMSR, this handler will directly pass the change desired by the Guest to the host, and expect the change to take effect on the MSR of the host.

Fields§

§index: u32

MSR index.

§from: MsrValueFrom

MSR source CPU, CPU 0 or running CPU.

§msr_file: Rc<RefCell<BTreeMap<usize, Rc<MsrDevFile>>>>

Reference of MSR file descriptors.

Implementations§

A helper interface to get MSR file descriptor.

Trait Implementations§

Auto Trait Implementations§

Blanket Implementations§

Gets the TypeId of self. Read more
Immutably borrows from an owned value. Read more
Mutably borrows from an owned value. Read more
Convert Box<dyn Trait> (where Trait: Downcast) to Box<dyn Any>. Box<dyn Any> can then be further downcast into Box<ConcreteType> where ConcreteType implements Trait.
Convert Rc<Trait> (where Trait: Downcast) to Rc<Any>. Rc<Any> can then be further downcast into Rc<ConcreteType> where ConcreteType implements Trait.
Convert &Trait (where Trait: Downcast) to &Any. This is needed since Rust cannot generate &Any’s vtable from &Trait’s.
Convert &mut Trait (where Trait: Downcast) to &Any. This is needed since Rust cannot generate &mut Any’s vtable from &mut Trait’s.

Returns the argument unchanged.

Calls U::from(self).

That is, this conversion is whatever the implementation of From<T> for U chooses to do.

The type returned in the event of a conversion error.
Performs the conversion.
The type returned in the event of a conversion error.
Performs the conversion.