referrerpolicy=no-referrer-when-downgrade

ProgressOf

Type Alias ProgressOf 

Source
pub type ProgressOf<T> = Progress<<T as Config>::MaxKeyLen>;
Expand description

Convenience type for easier usage of Progress.

Aliased Type§

pub enum ProgressOf<T> {
    ToStart,
    LastKey(BoundedVec<u8, <T as Config>::MaxKeyLen>),
    Complete,
}

Variants§

§

ToStart

Yet to begin.

§

LastKey(BoundedVec<u8, <T as Config>::MaxKeyLen>)

Ongoing, with the last key given.

§

Complete

All done.