Implement Error for a few error types (#511)

This commit is contained in:
Stjepan Glavina
2018-08-07 19:45:58 -07:00
committed by Carl Lerche
parent 4153cc4076
commit 6b1e4ab0a3
4 changed files with 46 additions and 3 deletions
+2 -2
View File
@@ -29,8 +29,8 @@ pub struct BlockingError {
///
/// # Return
///
/// When the blocking closure is executed, `Ok(T)` is returned, where `T` is the
/// closure's return value.
/// When the blocking closure is executed, `Ok(Ready(T))` is returned, where
/// `T` is the closure's return value.
///
/// If the thread pool has shutdown, `Err` is returned.
///