Enum marid::ProcessError
[−]
[src]
pub enum ProcessError<E> { RunnerError(E), ResultAlreadyGiven, CouldNotRecvResult, }
Error type for a running Process.
Variants
RunnerError | The associated runner returned an error which can be found as the enclosed argument. |
ResultAlreadyGiven | The associated result has already been received by a caller. This occurs when calling wait or ready more than once. |
CouldNotRecvResult | The process was not able to recieve a result from the runner. Something has gone wrong on the runner's thread. |