network: Remove unused error variants
Remove unused error variants from `network::Error`.
This commit is contained in:
parent
e67e97bb37
commit
5c6d369289
|
@ -53,18 +53,12 @@ pub mod stream_reader;
|
||||||
pub enum Error {
|
pub enum Error {
|
||||||
/// And I/O error
|
/// And I/O error
|
||||||
Io(io::Error),
|
Io(io::Error),
|
||||||
/// Socket mutex was poisoned
|
|
||||||
SocketMutexPoisoned,
|
|
||||||
/// Not connected to peer
|
|
||||||
SocketNotConnectedToPeer,
|
|
||||||
}
|
}
|
||||||
|
|
||||||
impl fmt::Display for Error {
|
impl fmt::Display for Error {
|
||||||
fn fmt(&self, f: &mut fmt::Formatter) -> fmt::Result {
|
fn fmt(&self, f: &mut fmt::Formatter) -> fmt::Result {
|
||||||
match *self {
|
match *self {
|
||||||
Error::Io(ref e) => fmt::Display::fmt(e, f),
|
Error::Io(ref e) => fmt::Display::fmt(e, f),
|
||||||
Error::SocketMutexPoisoned => f.write_str("socket mutex was poisoned"),
|
|
||||||
Error::SocketNotConnectedToPeer => f.write_str("not connected to peer"),
|
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
@ -76,8 +70,7 @@ impl std::error::Error for Error {
|
||||||
use self::Error::*;
|
use self::Error::*;
|
||||||
|
|
||||||
match self {
|
match self {
|
||||||
Io(e) => Some(e),
|
Io(e) => Some(e)
|
||||||
SocketMutexPoisoned | SocketNotConnectedToPeer => None,
|
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in New Issue