pub struct VsanHostQueryCheckLimitsSpec {
pub option_types: Option<Vec<String>>,
pub fetch_all: bool,
}Expand description
This class describes the spec for QueryCheckLimits to fetch more detailed data.
This structure may be used only with operations rendered under /vsan.
§How to access
HostVsanHealthSystem::vsan_host_query_check_limits(spec)
Fields§
§option_types: Option<Vec<String>>Specify a list of VsanHostQueryCheckLimitsOptionType_enum indicates more data to fetch.
See also VsanHostQueryCheckLimitsOptionType_enum.
fetch_all: boolSpecify whether to fetch all options.
Trait Implementations§
Source§impl Debug for VsanHostQueryCheckLimitsSpec
impl Debug for VsanHostQueryCheckLimitsSpec
Source§impl VimObjectTrait for VsanHostQueryCheckLimitsSpec
impl VimObjectTrait for VsanHostQueryCheckLimitsSpec
fn as_vim_object_ref<'a>(&'a self) -> &'a dyn VimObjectTrait
fn data_type(&self) -> StructType
impl DataObjectTrait for VsanHostQueryCheckLimitsSpec
Auto Trait Implementations§
impl Freeze for VsanHostQueryCheckLimitsSpec
impl RefUnwindSafe for VsanHostQueryCheckLimitsSpec
impl Send for VsanHostQueryCheckLimitsSpec
impl Sync for VsanHostQueryCheckLimitsSpec
impl Unpin for VsanHostQueryCheckLimitsSpec
impl UnsafeUnpin for VsanHostQueryCheckLimitsSpec
impl UnwindSafe for VsanHostQueryCheckLimitsSpec
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