Trait nix_daemon::ProgressExt
source · pub trait ProgressExt: Progress {
// Required methods
fn tap<F: Fn(Stderr) + Send>(
self,
f: F,
) -> impl Future<Output = Result<Self::T, Self::Error>> + Send;
fn split(
self,
) -> impl Future<Output = (Vec<Stderr>, Result<Self::T, Self::Error>)> + Send;
}
Expand description
Helper methods for Progress
.
Required Methods§
Object Safety§
This trait is not object safe.