parallel 0.11.3

Command-line CPU load balancer for executing jobs in parallel
1
2
3
4
5
6
7
8
9
10
11
12
13
14
mod lock;
mod iterator;

pub use self::lock::InputsLock;
pub use self::iterator::{InputIterator, ETA};

use std::io;
use std::path::PathBuf;

/// The `InputIterator` may possibly encounter an error with reading from the unprocessed file.
#[derive(Debug)]
pub enum InputIteratorErr {
    FileRead(PathBuf, io::Error),
}