struct VmdkDesc {
version: u32,
cid: String,
parent_cid: String,
create_type: String,
sectors: u64,
heads: u64,
cylinders: u64,
}Expand description
VMDK descriptor information.
Fields§
§version: u32Version number of the VMDK descriptor
cid: StringContent ID
parent_cid: StringContent ID of the parent link
create_type: StringType of virtual disk
sectors: u64The disk geometry value (sectors)
heads: u64The disk geometry value (heads)
cylinders: u64The disk geometry value (cylinders)
Trait Implementations§
Auto Trait Implementations§
impl Freeze for VmdkDesc
impl RefUnwindSafe for VmdkDesc
impl Send for VmdkDesc
impl Sync for VmdkDesc
impl Unpin for VmdkDesc
impl UnwindSafe for VmdkDesc
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