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

Convenience type for easier usage of Progress.

Aliased Type§

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.