Struct devicemapper::ThinPoolUsage [−][src]
pub struct ThinPoolUsage {
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 ThinPoolUsage[src]
impl Debug for ThinPoolUsagefn fmt(&self, f: &mut Formatter) -> Result[src]
fn fmt(&self, f: &mut Formatter) -> ResultFormats the value using the given formatter. Read more
impl Clone for ThinPoolUsage[src]
impl Clone for ThinPoolUsagefn clone(&self) -> ThinPoolUsage[src]
fn clone(&self) -> ThinPoolUsageReturns a copy of the value. Read more
fn clone_from(&mut self, source: &Self)1.0.0[src]
fn clone_from(&mut self, source: &Self)1.0.0
[src]Performs copy-assignment from source. Read more
Auto Trait Implementations
impl Send for ThinPoolUsage
impl Send for ThinPoolUsageimpl Sync for ThinPoolUsage
impl Sync for ThinPoolUsage