pub type WaitResult<T> = Result<T, WaitError>;
The result of a call to WaitMap::wait().
WaitMap::wait()
enum WaitResult<T> { Ok(T), Err(WaitError), }
Contains the success value
Contains the error value