pub struct FileLockInfoResult {
pub lock_info: Option<Vec<FileLockInfo>>,
pub fault: Option<MethodFault>,
}Expand description
Fields§
§lock_info: Option<Vec<FileLockInfo>>FileLockInfo entries populated based on results fetched from host.
If a single path is provided result should contain a single entry. For a generic VM name potentially multiple entries could be fetched and populated. Refer to FileManager.QueryFileLockInfo for more details.
fault: Option<MethodFault>Trait Implementations§
Source§impl Debug for FileLockInfoResult
impl Debug for FileLockInfoResult
Source§impl Deserialize for FileLockInfoResult
impl Deserialize for FileLockInfoResult
Source§impl VimObjectTrait for FileLockInfoResult
impl VimObjectTrait for FileLockInfoResult
fn as_vim_object_ref<'a>(&'a self) -> &'a dyn VimObjectTrait
fn data_type(&self) -> StructType
impl DataObjectTrait for FileLockInfoResult
Auto Trait Implementations§
impl Freeze for FileLockInfoResult
impl !RefUnwindSafe for FileLockInfoResult
impl Send for FileLockInfoResult
impl Sync for FileLockInfoResult
impl Unpin for FileLockInfoResult
impl UnsafeUnpin for FileLockInfoResult
impl !UnwindSafe for FileLockInfoResult
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