Enum devicemapper::ThinPoolStatus[][src]

pub enum ThinPoolStatus {
    Working(Box<ThinPoolWorkingStatus>),
    Fail,
}

Top-level thinpool status that indicates if it is working or failed.

Variants

The thinpool has not failed utterly.

The thinpool is in a failed condition.

Trait Implementations

impl Debug for ThinPoolStatus
[src]

Formats the value using the given formatter. Read more

impl Clone for ThinPoolStatus
[src]

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more

Auto Trait Implementations