pub struct HostBootDeviceInfo {
pub boot_devices: Option<Vec<HostBootDevice>>,
pub current_boot_device_key: Option<String>,
}Expand description
This data object represents the boot device information of the host.
§How to access
HostBootDeviceSystem::query_boot_devices()
Fields§
§boot_devices: Option<Vec<HostBootDevice>>The list of boot devices present on the host
current_boot_device_key: Option<String>The key of the current boot device that the host is configured to boot.
This property is unset if the current boot device is disabled.
Trait Implementations§
Source§impl Debug for HostBootDeviceInfo
impl Debug for HostBootDeviceInfo
Source§impl Deserialize for HostBootDeviceInfo
impl Deserialize for HostBootDeviceInfo
Source§impl VimObjectTrait for HostBootDeviceInfo
impl VimObjectTrait for HostBootDeviceInfo
fn as_vim_object_ref<'a>(&'a self) -> &'a dyn VimObjectTrait
fn data_type(&self) -> StructType
impl DataObjectTrait for HostBootDeviceInfo
Auto Trait Implementations§
impl Freeze for HostBootDeviceInfo
impl RefUnwindSafe for HostBootDeviceInfo
impl Send for HostBootDeviceInfo
impl Sync for HostBootDeviceInfo
impl Unpin for HostBootDeviceInfo
impl UnsafeUnpin for HostBootDeviceInfo
impl UnwindSafe for HostBootDeviceInfo
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