capella 0.1.3

An asynchronous StatsD clone
//! The error module defines custom errors as well as the appropriate conversions needed for
//! capella.
#![deny(missing_docs)]

use std::fmt;
use std::error::Error as StdError;
use std::num::{ParseFloatError, ParseIntError};

use self::Error::Parse;

/// A type definition for capella's error type.
pub type CapellaResult<T> = Result<T, Error>;

/// `Error` is used for server side errors that may occur.
#[derive(Debug)]
pub enum Error {
    /// An error that occurs during parsing.
    Parse,
}

impl StdError for Error {
    fn description(&self) -> &str {
        match *self {
            Parse => "Error parsing metric",
        }
    }
}

impl fmt::Display for Error {
    fn fmt(&self, f: &mut fmt::Formatter) -> fmt::Result {
        f.write_str(self.description())
    }
}

// The following `From` conversions are used for parsing integers or floats while destructuring
// a packet.
impl From<ParseIntError> for Error {
    fn from(_: ParseIntError) -> Error {
        Error::Parse
    }
}

impl From<ParseFloatError> for Error {
    fn from(_: ParseFloatError) -> Error {
        Error::Parse
    }
}