pub async fn concatenator<P>(dest: &mut File, parts: P) -> Result<(), Error> where
    P: Stream<Item = Result<Arc<Path>, Error>> + Send + Unpin
Expand description

Accepts a stream of future file parts and concatenates them into the dest file.