| 18 | /// Represents an error that can occur when attempting to write MessagePack'ed value into the write. |
| 19 | #[derive(Debug)] |
| 20 | pub struct WriteError(io::Error); |
| 21 | |
| 22 | impl Error for WriteError { |
| 23 | fn description(&self) -> &str { "error while writing MessagePack'ed value" } |
no outgoing calls