pub enum HypervisorKind {
Geniezone,
Gunyah,
Halla,
Kvm,
Haxm,
Whpx,
}Expand description
Supported hypervisors.
When adding a new one, also update the HypervisorFfi in crosvm_control/src/lib.rs
Variants§
Trait Implementations§
Source§impl Clone for HypervisorKind
impl Clone for HypervisorKind
Source§fn clone(&self) -> HypervisorKind
fn clone(&self) -> HypervisorKind
Returns a copy of the value. Read more
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreSource§impl Debug for HypervisorKind
impl Debug for HypervisorKind
Source§impl<'de> Deserialize<'de> for HypervisorKind
impl<'de> Deserialize<'de> for HypervisorKind
Source§fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
Auto Trait Implementations§
impl Freeze for HypervisorKind
impl RefUnwindSafe for HypervisorKind
impl Send for HypervisorKind
impl Sync for HypervisorKind
impl Unpin for HypervisorKind
impl UnwindSafe for HypervisorKind
Blanket Implementations§
Source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
Source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more