(&self, f: &mut fmt::Formatter)
| 22 | E: fmt::Debug, |
| 23 | { |
| 24 | fn fmt(&self, f: &mut fmt::Formatter) -> fmt::Result |
| 25 | { |
| 26 | match *self |
| 27 | { |
| 28 | Err::Other(ref e) => fmt::Debug::fmt(e, f), |
| 29 | Err::WouldBlk => f.write_str("[INFO] WOULDBLK"), |
| 30 | } |
| 31 | } |
| 32 | } |
| 33 | |
| 34 |