pub type WorkerResult<W> = Result<<W as Worker>::Output, WorkerError<W>>;
pub enum WorkerResult<W> { Ok(<W as Worker>::Output), Err(ApplyError<<W as Worker>::Input, <W as Worker>::Error>), }
Contains the success value
Contains the error value