[][src]Enum xhypervisor::VMXCap

#[repr(C)]
pub enum VMXCap {
    PINBASED,
    PROCBASED,
    PROCBASED2,
    ENTRY,
    EXIT,
    PREEMPTION_TIMER,
}

VMX cabability

Variants

PINBASED

Pin-based VMX capabilities

PROCBASED

Primary proc-based VMX capabilities

PROCBASED2

Secondary proc-based VMX capabilities

ENTRY

VM-entry VMX capabilities

EXIT

VM-exit VMX capabilities

PREEMPTION_TIMER

VMX preemption timer frequency

Trait Implementations

impl Clone for VMXCap[src]

impl Debug for VMXCap[src]

impl Display for VMXCap[src]

Auto Trait Implementations

impl RefUnwindSafe for VMXCap

impl Send for VMXCap

impl Sync for VMXCap

impl Unpin for VMXCap

impl UnwindSafe for VMXCap

Blanket Implementations

impl<T> Any for T where
    T: 'static + ?Sized
[src]

impl<T> Borrow<T> for T where
    T: ?Sized
[src]

impl<T> BorrowMut<T> for T where
    T: ?Sized
[src]

impl<T> From<T> for T[src]

impl<T, U> Into<U> for T where
    U: From<T>, 
[src]

impl<T> ToOwned for T where
    T: Clone
[src]

type Owned = T

The resulting type after obtaining ownership.

impl<T> ToString for T where
    T: Display + ?Sized
[src]

impl<T, U> TryFrom<U> for T where
    U: Into<T>, 
[src]

type Error = Infallible

The type returned in the event of a conversion error.

impl<T, U> TryInto<U> for T where
    U: TryFrom<T>, 
[src]

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.