pub struct HostPatchManagerResult {
pub version: String,
pub status: Option<Vec<HostPatchManagerStatus>>,
pub xml_result: Option<String>,
}Expand description
The result of the operation.
Some of the fields are only valid for specific operations.
Fields§
§version: StringThe version of the scan result schema.
status: Option<Vec<HostPatchManagerStatus>>The scan results for each patch.
xml_result: Option<String>The scan results in XML format.
Trait Implementations§
Source§impl Debug for HostPatchManagerResult
impl Debug for HostPatchManagerResult
Source§impl Deserialize for HostPatchManagerResult
impl Deserialize for HostPatchManagerResult
Source§impl VimObjectTrait for HostPatchManagerResult
impl VimObjectTrait for HostPatchManagerResult
fn as_vim_object_ref<'a>(&'a self) -> &'a dyn VimObjectTrait
fn data_type(&self) -> StructType
impl DataObjectTrait for HostPatchManagerResult
Auto Trait Implementations§
impl Freeze for HostPatchManagerResult
impl RefUnwindSafe for HostPatchManagerResult
impl Send for HostPatchManagerResult
impl Sync for HostPatchManagerResult
impl Unpin for HostPatchManagerResult
impl UnsafeUnpin for HostPatchManagerResult
impl UnwindSafe for HostPatchManagerResult
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