pub struct BlockdevCreateOptionsVmdk {
pub adapter_type: Option<BlockdevVmdkAdapterType>,
pub backing_file: Option<String>,
pub extents: Option<Vec<BlockdevRef>>,
pub hwversion: Option<String>,
pub subformat: Option<BlockdevVmdkSubformat>,
pub toolsversion: Option<String>,
pub zeroed_grain: Option<bool>,
pub file: BlockdevRef,
pub size: u64,
}
Fields§
§adapter_type: Option<BlockdevVmdkAdapterType>
§backing_file: Option<String>
§extents: Option<Vec<BlockdevRef>>
§hwversion: Option<String>
§subformat: Option<BlockdevVmdkSubformat>
§toolsversion: Option<String>
§zeroed_grain: Option<bool>
§file: BlockdevRef
§size: u64
Trait Implementations§
Source§impl Clone for BlockdevCreateOptionsVmdk
impl Clone for BlockdevCreateOptionsVmdk
Source§fn clone(&self) -> BlockdevCreateOptionsVmdk
fn clone(&self) -> BlockdevCreateOptionsVmdk
Returns a duplicate of the value. Read more
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source
. Read moreSource§impl Debug for BlockdevCreateOptionsVmdk
impl Debug for BlockdevCreateOptionsVmdk
Source§impl<'de> Deserialize<'de> for BlockdevCreateOptionsVmdk
impl<'de> Deserialize<'de> for BlockdevCreateOptionsVmdk
Source§fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
Source§impl From<BlockdevCreateOptionsVmdk> for BlockdevCreateOptions
impl From<BlockdevCreateOptionsVmdk> for BlockdevCreateOptions
Source§fn from(val: BlockdevCreateOptionsVmdk) -> Self
fn from(val: BlockdevCreateOptionsVmdk) -> Self
Converts to this type from the input type.
Auto Trait Implementations§
impl Freeze for BlockdevCreateOptionsVmdk
impl RefUnwindSafe for BlockdevCreateOptionsVmdk
impl Send for BlockdevCreateOptionsVmdk
impl Sync for BlockdevCreateOptionsVmdk
impl Unpin for BlockdevCreateOptionsVmdk
impl UnwindSafe for BlockdevCreateOptionsVmdk
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