pub struct StorageVolumeBitmapsPost {
pub disabled: Option<bool>,
pub granularity: Option<i64>,
pub name: Option<String>,
pub persistent: Option<bool>,
}Expand description
StorageVolumeBitmapsPost : StorageVolumeBitmapsPost represents the fields available for a new volume bitmap
Fields§
§disabled: Option<bool>The bitmap is created in the disabled state
granularity: Option<i64>Granularity of the dirty bitmap in bytes
name: Option<String>Bitmap name
persistent: Option<bool>true if the bitmap was stored on disk, is scheduled to be stored on disk, or both
Implementations§
Source§impl StorageVolumeBitmapsPost
impl StorageVolumeBitmapsPost
Sourcepub fn new() -> StorageVolumeBitmapsPost
pub fn new() -> StorageVolumeBitmapsPost
StorageVolumeBitmapsPost represents the fields available for a new volume bitmap
Trait Implementations§
Source§impl Clone for StorageVolumeBitmapsPost
impl Clone for StorageVolumeBitmapsPost
Source§fn clone(&self) -> StorageVolumeBitmapsPost
fn clone(&self) -> StorageVolumeBitmapsPost
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · 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 StorageVolumeBitmapsPost
impl Debug for StorageVolumeBitmapsPost
Source§impl Default for StorageVolumeBitmapsPost
impl Default for StorageVolumeBitmapsPost
Source§fn default() -> StorageVolumeBitmapsPost
fn default() -> StorageVolumeBitmapsPost
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for StorageVolumeBitmapsPost
impl<'de> Deserialize<'de> for StorageVolumeBitmapsPost
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 PartialEq for StorageVolumeBitmapsPost
impl PartialEq for StorageVolumeBitmapsPost
Source§fn eq(&self, other: &StorageVolumeBitmapsPost) -> bool
fn eq(&self, other: &StorageVolumeBitmapsPost) -> bool
Tests for
self and other values to be equal, and is used by ==.Source§impl Serialize for StorageVolumeBitmapsPost
impl Serialize for StorageVolumeBitmapsPost
impl StructuralPartialEq for StorageVolumeBitmapsPost
Auto Trait Implementations§
impl Freeze for StorageVolumeBitmapsPost
impl RefUnwindSafe for StorageVolumeBitmapsPost
impl Send for StorageVolumeBitmapsPost
impl Sync for StorageVolumeBitmapsPost
impl Unpin for StorageVolumeBitmapsPost
impl UnsafeUnpin for StorageVolumeBitmapsPost
impl UnwindSafe for StorageVolumeBitmapsPost
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