pub struct VsanHostVmdkLoadTestResult {
pub hostname: String,
pub issue_found: bool,
pub fault_message: Option<String>,
pub vmdk_results: Option<Vec<VsanVmdkLoadTestResult>>,
}Expand description
Deprecated as of vSphere API 6.7.
Class for preparing, running and cleaning up VMDK load test results on the host.
§How to access
VsanVcClusterHealthSystem::vsan_query_vc_cluster_vmdk_load_history_test().host_results?[*]
Fields§
§hostname: StringThe host name.
issue_found: boolFalse either indicate one or more VMDK test result is failed in host VMDK load test or issues found in preparing VMDK or cleaning up VMDK.
fault_message: Option<String>The error message when there is any issue found
vmdk_results: Option<Vec<VsanVmdkLoadTestResult>>The VMDK load test result on the host
Trait Implementations§
Source§impl Debug for VsanHostVmdkLoadTestResult
impl Debug for VsanHostVmdkLoadTestResult
Source§impl VimObjectTrait for VsanHostVmdkLoadTestResult
impl VimObjectTrait for VsanHostVmdkLoadTestResult
fn as_vim_object_ref<'a>(&'a self) -> &'a dyn VimObjectTrait
fn data_type(&self) -> StructType
impl DataObjectTrait for VsanHostVmdkLoadTestResult
Auto Trait Implementations§
impl Freeze for VsanHostVmdkLoadTestResult
impl !RefUnwindSafe for VsanHostVmdkLoadTestResult
impl Send for VsanHostVmdkLoadTestResult
impl Sync for VsanHostVmdkLoadTestResult
impl Unpin for VsanHostVmdkLoadTestResult
impl UnsafeUnpin for VsanHostVmdkLoadTestResult
impl !UnwindSafe for VsanHostVmdkLoadTestResult
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