From 0f9aca4ef41e9f4dff61c92048f4d60b00d27871 Mon Sep 17 00:00:00 2001 From: johannst Date: Fri, 14 Mar 2025 01:15:52 +0000 Subject: deploy: 3ebd8b163dc8d5679d90927de1c2fcd639882362 --- kvm_rs/cap/enum.CapBool.html | 26 +++++++++++++------------- kvm_rs/cap/enum.CapInt.html | 30 +++++++++++++++--------------- kvm_rs/cap/index.html | 4 ++-- 3 files changed, 30 insertions(+), 30 deletions(-) (limited to 'kvm_rs/cap') diff --git a/kvm_rs/cap/enum.CapBool.html b/kvm_rs/cap/enum.CapBool.html index fb40efb..13365e3 100644 --- a/kvm_rs/cap/enum.CapBool.html +++ b/kvm_rs/cap/enum.CapBool.html @@ -1,16 +1,16 @@ -CapBool in kvm_rs::cap - Rust

Enum kvm_rs::cap::CapBool

source ·
#[repr(u64)]
pub enum CapBool { - CheckExtensionVm, +CapBool in kvm_rs::cap - Rust
kvm_rs::cap

Enum CapBool

Source
#[repr(u64)]
pub enum CapBool { + CheckExtensionVm = 105, }
Expand description

Definition of capabilities that return a bool value indicating whether the capability is supported or not.

-

Variants§

§

CheckExtensionVm

Check if capabilities can be queried on VM fds (KVM_CAP_CHECK_EXTENSION_VM).

-

Trait Implementations§

source§

impl Into<u64> for CapBool

source§

fn into(self) -> u64

Converts this type into the (usually inferred) input type.

Auto Trait Implementations§

Blanket Implementations§

source§

impl<T> Any for Twhere - T: 'static + ?Sized,

source§

fn type_id(&self) -> TypeId

Gets the TypeId of self. Read more
source§

impl<T> Borrow<T> for Twhere - T: ?Sized,

source§

fn borrow(&self) -> &T

Immutably borrows from an owned value. Read more
source§

impl<T> BorrowMut<T> for Twhere - T: ?Sized,

source§

fn borrow_mut(&mut self) -> &mut T

Mutably borrows from an owned value. Read more
source§

impl<T> From<T> for T

source§

fn from(t: T) -> T

Returns the argument unchanged.

-
source§

impl<T, U> Into<U> for Twhere - U: From<T>,

source§

fn into(self) -> U

Calls U::from(self).

+

Variants§

§

CheckExtensionVm = 105

Check if capabilities can be queried on VM fds (KVM_CAP_CHECK_EXTENSION_VM).

+

Trait Implementations§

Source§

impl Into<u64> for CapBool

Source§

fn into(self) -> u64

Converts this type into the (usually inferred) input type.

Auto Trait Implementations§

Blanket Implementations§

Source§

impl<T> Any for T
where + T: 'static + ?Sized,

Source§

fn type_id(&self) -> TypeId

Gets the TypeId of self. Read more
Source§

impl<T> Borrow<T> for T
where + T: ?Sized,

Source§

fn borrow(&self) -> &T

Immutably borrows from an owned value. Read more
Source§

impl<T> BorrowMut<T> for T
where + T: ?Sized,

Source§

fn borrow_mut(&mut self) -> &mut T

Mutably borrows from an owned value. Read more
Source§

impl<T> From<T> for T

Source§

fn from(t: T) -> T

Returns the argument unchanged.

+
Source§

impl<T, U> Into<U> for T
where + U: From<T>,

Source§

fn into(self) -> U

Calls U::from(self).

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

-
source§

impl<T, U> TryFrom<U> for Twhere - U: Into<T>,

§

type Error = Infallible

The type returned in the event of a conversion error.
source§

fn try_from(value: U) -> Result<T, <T as TryFrom<U>>::Error>

Performs the conversion.
source§

impl<T, U> TryInto<U> for Twhere - U: TryFrom<T>,

§

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

The type returned in the event of a conversion error.
source§

fn try_into(self) -> Result<U, <U as TryFrom<T>>::Error>

Performs the conversion.
\ No newline at end of file +From<T> for U chooses to do.

+
Source§

impl<T, U> TryFrom<U> for T
where + U: Into<T>,

Source§

type Error = Infallible

The type returned in the event of a conversion error.
Source§

fn try_from(value: U) -> Result<T, <T as TryFrom<U>>::Error>

Performs the conversion.
Source§

impl<T, U> TryInto<U> for T
where + U: TryFrom<T>,

Source§

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

The type returned in the event of a conversion error.
Source§

fn try_into(self) -> Result<U, <U as TryFrom<T>>::Error>

Performs the conversion.
\ No newline at end of file diff --git a/kvm_rs/cap/enum.CapInt.html b/kvm_rs/cap/enum.CapInt.html index ac2412a..896a597 100644 --- a/kvm_rs/cap/enum.CapInt.html +++ b/kvm_rs/cap/enum.CapInt.html @@ -1,18 +1,18 @@ -CapInt in kvm_rs::cap - Rust

Enum kvm_rs::cap::CapInt

source ·
#[repr(u64)]
pub enum CapInt { - NrVcpus, - MaxVcpus, +CapInt in kvm_rs::cap - Rust
kvm_rs::cap

Enum CapInt

Source
#[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

Get the recommended max VPCUs (KVM_CAP_NR_VCPUS).

-
§

MaxVcpus

Get the possible max VPCUs (KVM_CAP_MAX_VCPUS).

-

Trait Implementations§

source§

impl Into<u64> for CapInt

source§

fn into(self) -> u64

Converts this type into the (usually inferred) input type.

Auto Trait Implementations§

Blanket Implementations§

source§

impl<T> Any for Twhere - T: 'static + ?Sized,

source§

fn type_id(&self) -> TypeId

Gets the TypeId of self. Read more
source§

impl<T> Borrow<T> for Twhere - T: ?Sized,

source§

fn borrow(&self) -> &T

Immutably borrows from an owned value. Read more
source§

impl<T> BorrowMut<T> for Twhere - T: ?Sized,

source§

fn borrow_mut(&mut self) -> &mut T

Mutably borrows from an owned value. Read more
source§

impl<T> From<T> for T

source§

fn from(t: T) -> T

Returns the argument unchanged.

-
source§

impl<T, U> Into<U> for Twhere - U: From<T>,

source§

fn into(self) -> U

Calls U::from(self).

+

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§

Source§

impl Into<u64> for CapInt

Source§

fn into(self) -> u64

Converts this type into the (usually inferred) input type.

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> Any for T
where + T: 'static + ?Sized,

Source§

fn type_id(&self) -> TypeId

Gets the TypeId of self. Read more
Source§

impl<T> Borrow<T> for T
where + T: ?Sized,

Source§

fn borrow(&self) -> &T

Immutably borrows from an owned value. Read more
Source§

impl<T> BorrowMut<T> for T
where + T: ?Sized,

Source§

fn borrow_mut(&mut self) -> &mut T

Mutably borrows from an owned value. Read more
Source§

impl<T> From<T> for T

Source§

fn from(t: T) -> T

Returns the argument unchanged.

+
Source§

impl<T, U> Into<U> for T
where + U: From<T>,

Source§

fn into(self) -> U

Calls U::from(self).

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

-
source§

impl<T, U> TryFrom<U> for Twhere - U: Into<T>,

§

type Error = Infallible

The type returned in the event of a conversion error.
source§

fn try_from(value: U) -> Result<T, <T as TryFrom<U>>::Error>

Performs the conversion.
source§

impl<T, U> TryInto<U> for Twhere - U: TryFrom<T>,

§

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

The type returned in the event of a conversion error.
source§

fn try_into(self) -> Result<U, <U as TryFrom<T>>::Error>

Performs the conversion.
\ No newline at end of file +From<T> for U chooses to do.

+
Source§

impl<T, U> TryFrom<U> for T
where + U: Into<T>,

Source§

type Error = Infallible

The type returned in the event of a conversion error.
Source§

fn try_from(value: U) -> Result<T, <T as TryFrom<U>>::Error>

Performs the conversion.
Source§

impl<T, U> TryInto<U> for T
where + U: TryFrom<T>,

Source§

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

The type returned in the event of a conversion error.
Source§

fn try_into(self) -> Result<U, <U as TryFrom<T>>::Error>

Performs the conversion.
\ No newline at end of file diff --git a/kvm_rs/cap/index.html b/kvm_rs/cap/index.html index 514850f..00ac7e9 100644 --- a/kvm_rs/cap/index.html +++ b/kvm_rs/cap/index.html @@ -1,4 +1,4 @@ -kvm_rs::cap - Rust

Module kvm_rs::cap

source ·
Expand description

Definitions of KVM capabilities.

-

Enums

  • Definition of capabilities that return a bool value indicating whether the capability is +kvm_rs::cap - Rust
    kvm_rs

    Module cap

    Source
    Expand description

    Definitions of KVM capabilities.

    +

    Enums§

    • Definition of capabilities that return a bool value indicating whether the capability is supported or not.
    • Definition of capabilities that return an integer value indicating the amount of the queried capability.
    \ No newline at end of file -- cgit v1.2.3