#[repr(u64)]pub enum CapInt {
NrVcpus = 9,
MaxVcpus = 66,
}
Expand description
Definition of capabilities that return an integer value indicating the amount of the queried capability.
Variants§
NrVcpus = 9
Get the recommended max VPCUs (KVM_CAP_NR_VCPUS
).
MaxVcpus = 66
Get the possible max VPCUs (KVM_CAP_MAX_VCPUS
).
Trait Implementations§
Auto Trait Implementations§
impl Freeze for CapInt
impl RefUnwindSafe for CapInt
impl Send for CapInt
impl Sync for CapInt
impl Unpin for CapInt
impl UnwindSafe for CapInt
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