Enum forkjoin::ResultError [] [src]

pub enum ResultError {
    NoResult,
    Completed,
}

Enum indicating there was a problem fetching a result from a job.

Variants

NoResult

Returned from try_recv when no results are available at the time of the call

Completed

Returned from try_recv and recv when there are no more results to fetch

Trait Implementations

impl Display for ResultError

fn fmt(&self, f: &mut Formatter) -> Result

Derived Implementations

impl Debug for ResultError

fn fmt(&self, __arg_0: &mut Formatter) -> Result