Trait SplitProgressBuilder

Source
pub trait SplitProgressBuilder {
    type Progress<'a>: ProgressCallback
       where Self: 'a;

    // Required method
    fn next_subpart(&mut self) -> Option<Self::Progress<'_>>;
}

Required Associated Types§

Source

type Progress<'a>: ProgressCallback where Self: 'a

Required Methods§

Source

fn next_subpart(&mut self) -> Option<Self::Progress<'_>>

Dyn Compatibility§

This trait is not dyn compatible.

In older versions of Rust, dyn compatibility was called "object safety", so this trait is not object safe.

Implementors§