pub struct HostNumaInfo {
pub type: String,
pub num_nodes: i32,
pub numa_node: Option<Vec<HostNumaNode>>,
}Expand description
Fields§
§type: StringDeprecated as of vSphere API 5.1, this property is always set to “NUMA”.
The type of NUMA technology.
num_nodes: i32The number of NUMA nodes on the host.
The value is 0 if the host is not NUMA-capable.
numa_node: Option<Vec<HostNumaNode>>Information about each of the NUMA nodes on the host.
The array is empty if the host is not NUMA-capable.
Trait Implementations§
Source§impl Debug for HostNumaInfo
impl Debug for HostNumaInfo
Source§impl Deserialize for HostNumaInfo
impl Deserialize for HostNumaInfo
Source§impl VimObjectTrait for HostNumaInfo
impl VimObjectTrait for HostNumaInfo
fn as_vim_object_ref<'a>(&'a self) -> &'a dyn VimObjectTrait
fn data_type(&self) -> StructType
impl DataObjectTrait for HostNumaInfo
Auto Trait Implementations§
impl Freeze for HostNumaInfo
impl RefUnwindSafe for HostNumaInfo
impl Send for HostNumaInfo
impl Sync for HostNumaInfo
impl Unpin for HostNumaInfo
impl UnsafeUnpin for HostNumaInfo
impl UnwindSafe for HostNumaInfo
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