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

The number of metadata blocks that are in use.

The total number of metadata blocks available to the thinpool.

The number of data blocks that are in use.

The total number of data blocks available to the thinpool.

Trait Implementations

impl Debug for ThinPoolUsage
[src]

Formats the value using the given formatter. Read more

impl Clone for ThinPoolUsage
[src]

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more

Auto Trait Implementations