ssh-agent 0.2.4

Library for implementing an SSH agent
Documentation
use std::io;
use super::proto::error::ProtoError;

#[derive(Debug)]
pub enum AgentError {
    User,
    Proto(ProtoError),
    IO(io::Error)
}

impl From<ProtoError> for AgentError {
    fn from(e: ProtoError) -> AgentError {
        AgentError::Proto(e)
    }
}

impl From<io::Error> for AgentError {
    fn from(e: io::Error) -> AgentError {
        AgentError::IO(e)
    }
}