pub struct VsanAttachToSrOperation {
pub task: Option<ManagedObjectReference>,
pub success: Option<bool>,
pub timestamp: Option<String>,
pub sr_number: String,
}Expand description
Class for the historical operation of attaching to Support Request (SR)
§How to access
VsanVcClusterHealthSystem::vsan_query_attach_to_sr_history()
Fields§
§task: Option<ManagedObjectReference>The task associates with this test result
Refers instance of Task.
success: Option<bool>Indicate the attach to SR operation is successful or not The success value will be empty when the operation is not completed when the task is running
timestamp: Option<String>The time for attaching to SR operation The timestamp will be empty when the operation is not completed when the task is running
sr_number: StringThe SR number
Trait Implementations§
Source§impl Debug for VsanAttachToSrOperation
impl Debug for VsanAttachToSrOperation
Source§impl VimObjectTrait for VsanAttachToSrOperation
impl VimObjectTrait for VsanAttachToSrOperation
fn as_vim_object_ref<'a>(&'a self) -> &'a dyn VimObjectTrait
fn data_type(&self) -> StructType
impl DataObjectTrait for VsanAttachToSrOperation
Auto Trait Implementations§
impl Freeze for VsanAttachToSrOperation
impl RefUnwindSafe for VsanAttachToSrOperation
impl Send for VsanAttachToSrOperation
impl Sync for VsanAttachToSrOperation
impl Unpin for VsanAttachToSrOperation
impl UnsafeUnpin for VsanAttachToSrOperation
impl UnwindSafe for VsanAttachToSrOperation
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