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

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 ThinPoolBlockUsage
[src]

Formats the value using the given formatter.

impl Clone for ThinPoolBlockUsage
[src]

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more

impl Copy for ThinPoolBlockUsage
[src]