pub struct HostLocalFileSystemVolume {
pub host_file_system_volume_: HostFileSystemVolume,
pub device: String,
}Expand description
Local file system volume.
§How to access
HostSystem::config.file_system_volume?.mount_info?[*].volume→HostLocalFileSystemVolumeHostStorageSystem::file_system_volume_info.mount_info?[*].volume→HostLocalFileSystemVolume
Fields§
§host_file_system_volume_: HostFileSystemVolume§device: StringThe device of the local file system.
Trait Implementations§
Source§impl Debug for HostLocalFileSystemVolume
impl Debug for HostLocalFileSystemVolume
Source§impl Deref for HostLocalFileSystemVolume
impl Deref for HostLocalFileSystemVolume
Source§impl DerefMut for HostLocalFileSystemVolume
impl DerefMut for HostLocalFileSystemVolume
Source§impl HostFileSystemVolumeTrait for HostLocalFileSystemVolume
impl HostFileSystemVolumeTrait for HostLocalFileSystemVolume
Source§fn get_host_file_system_volume(&self) -> &HostFileSystemVolume
fn get_host_file_system_volume(&self) -> &HostFileSystemVolume
Get a reference to the HostFileSystemVolume parent struct
Source§fn get_host_file_system_volume_mut(&mut self) -> &mut HostFileSystemVolume
fn get_host_file_system_volume_mut(&mut self) -> &mut HostFileSystemVolume
Get a mutable reference to the HostFileSystemVolume parent struct
Source§impl VimObjectTrait for HostLocalFileSystemVolume
impl VimObjectTrait for HostLocalFileSystemVolume
fn as_vim_object_ref<'a>(&'a self) -> &'a dyn VimObjectTrait
fn data_type(&self) -> StructType
impl DataObjectTrait for HostLocalFileSystemVolume
Auto Trait Implementations§
impl Freeze for HostLocalFileSystemVolume
impl RefUnwindSafe for HostLocalFileSystemVolume
impl Send for HostLocalFileSystemVolume
impl Sync for HostLocalFileSystemVolume
impl Unpin for HostLocalFileSystemVolume
impl UnsafeUnpin for HostLocalFileSystemVolume
impl UnwindSafe for HostLocalFileSystemVolume
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