Struct devicemapper::ThinPoolBlockUsage
[−]
[src]
pub struct ThinPoolBlockUsage {
pub used_meta: MetaBlocks,
pub total_meta: MetaBlocks,
pub used_data: DataBlocks,
pub total_data: DataBlocks,
}Contains values indicating the thinpool's used vs total allocations for metadata and data blocks.
Fields
used_meta: MetaBlocks
The number of metadata blocks that are in use.
total_meta: MetaBlocks
The total number of metadata blocks available to the thinpool.
used_data: DataBlocks
The number of data blocks that are in use.
total_data: DataBlocks
The total number of data blocks available to the thinpool.
Trait Implementations
impl Debug for ThinPoolBlockUsage[src]
impl Clone for ThinPoolBlockUsage[src]
fn clone(&self) -> ThinPoolBlockUsage[src]
Returns a copy of the value. Read more
fn clone_from(&mut self, source: &Self)1.0.0[src]
Performs copy-assignment from source. Read more