blob: bb95e8137123790850b7d633c320b3a37526ae4f (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
|
use nix;
use std::time::Duration;
#[derive(Debug)]
pub enum WaitError {
TimedOut(Duration),
OsError(nix::Error)
}
impl From<nix::Error> for WaitError {
fn from(err: nix::Error) -> Self {
WaitError::OsError(err)
}
}
impl std::fmt::Display for WaitError {
fn fmt(&self, f: &mut std::fmt::Formatter) -> std::fmt::Result {
match *self {
WaitError::TimedOut(dur) => write!(f, "process timed out in {:?}", dur),
WaitError::OsError(err) => err.fmt(f)
}
}
}
impl std::error::Error for WaitError {
fn source(&self) -> Option<&(dyn std::error::Error + 'static)> {
match *self {
WaitError::TimedOut(_) => None,
WaitError::OsError(ref e) => Some(e)
}
}
}
|