Enum kvm_rs::cap::CapInt[][src]

#[repr(u64)]
pub enum CapInt {
    NrVcpus,
    MaxVcpus,
}

Definition of capabilities that return an integer value indicating the amount of the queried capability.

Variants

NrVcpus

Get the recommended max VPCUs (KVM_CAP_NR_VCPUS).

MaxVcpus

Get the possible max VPCUs (KVM_CAP_MAX_VCPUS).

Trait Implementations

impl Into<u64> for CapInt[src]

Auto Trait Implementations

impl RefUnwindSafe for CapInt

impl Send for CapInt

impl Sync for CapInt

impl Unpin for CapInt

impl UnwindSafe for CapInt

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, 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.