Struct forkjoin::Task [] [src]

pub struct Task<Arg: Send, Ret: Send + Sync> {
    pub algo: Algorithm<Arg, Ret>,
    pub arg: Arg,
    pub join: ResultReceiver<Ret>,
}

Internal representation of a task.

Fields

algo
arg
join