postgres_proto_rs/
errors.rs

1#[derive(Debug, PartialEq)]
2pub enum Error {
3    ParseError(String),
4    SocketIOError,
5    InvalidBytes,
6    InvalidProtocol,
7    UnsupportedProtocol,
8    UnexpectedEof,
9    IOError(String),
10}