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
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
use std::error::Error as StdError;
use std::fmt;

use tungstenite::Error as WsError;

use never::Never;

/// Errors that can happen inside warp.
#[derive(Debug)]
pub struct Error(Kind);

impl fmt::Display for Error {
    fn fmt(&self, f: &mut fmt::Formatter) -> fmt::Result {
        match self.0 {
            Kind::Ws(ref e) => fmt::Display::fmt(e, f),
        }
    }
}

impl StdError for Error {
    fn description(&self) -> &str {
        match self.0 {
            Kind::Ws(ref e) => e.description(),
        }
    }

    fn cause(&self) -> Option<&StdError> {
        match self.0 {
            Kind::Ws(ref e) => e.cause(),
        }
    }
}

#[derive(Debug)]
pub(crate) enum Kind {
    Ws(WsError),
}

#[doc(hidden)]
impl From<Kind> for Error {
    fn from(kind: Kind) -> Error {
        Error(kind)
    }
}

impl From<Never> for Error {
    fn from(never: Never) -> Error {
        match never {}
    }
}