pub struct ImageInfoSpecificQCow2 {
pub bitmaps: Option<Vec<Qcow2BitmapInfo>>,
pub corrupt: Option<bool>,
pub data_file: Option<String>,
pub data_file_raw: Option<bool>,
pub encrypt: Option<ImageInfoSpecificQCow2Encryption>,
pub extended_l2: Option<bool>,
pub lazy_refcounts: Option<bool>,
pub compat: String,
pub compression_type: Qcow2CompressionType,
pub refcount_bits: i64,
}
Fields§
§bitmaps: Option<Vec<Qcow2BitmapInfo>>
§corrupt: Option<bool>
§data_file: Option<String>
§data_file_raw: Option<bool>
§encrypt: Option<ImageInfoSpecificQCow2Encryption>
§extended_l2: Option<bool>
§lazy_refcounts: Option<bool>
§compat: String
§compression_type: Qcow2CompressionType
§refcount_bits: i64
Trait Implementations§
Source§impl AsRef<ImageInfoSpecificQCow2> for ImageInfoSpecificQCow2Wrapper
impl AsRef<ImageInfoSpecificQCow2> for ImageInfoSpecificQCow2Wrapper
Source§fn as_ref(&self) -> &ImageInfoSpecificQCow2
fn as_ref(&self) -> &ImageInfoSpecificQCow2
Converts this type into a shared reference of the (usually inferred) input type.
Source§impl Clone for ImageInfoSpecificQCow2
impl Clone for ImageInfoSpecificQCow2
Source§fn clone(&self) -> ImageInfoSpecificQCow2
fn clone(&self) -> ImageInfoSpecificQCow2
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 ImageInfoSpecificQCow2
impl Debug for ImageInfoSpecificQCow2
Source§impl<'de> Deserialize<'de> for ImageInfoSpecificQCow2
impl<'de> Deserialize<'de> for ImageInfoSpecificQCow2
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<ImageInfoSpecificQCow2> for ImageInfoSpecific
impl From<ImageInfoSpecificQCow2> for ImageInfoSpecific
Source§fn from(val: ImageInfoSpecificQCow2) -> Self
fn from(val: ImageInfoSpecificQCow2) -> Self
Converts to this type from the input type.
Auto Trait Implementations§
impl Freeze for ImageInfoSpecificQCow2
impl RefUnwindSafe for ImageInfoSpecificQCow2
impl Send for ImageInfoSpecificQCow2
impl Sync for ImageInfoSpecificQCow2
impl Unpin for ImageInfoSpecificQCow2
impl UnwindSafe for ImageInfoSpecificQCow2
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