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
52
53
54
55
56
57
58
#![warn(missing_docs)]

//! This lib is used to parse formatted strings to different types

use std::error::Error;
use std::fmt;
extern crate num_traits;

pub mod bytes;
pub mod duration;
pub mod num;

/// Error parsing formatted strings
#[derive(Debug, Copy, Clone, Eq, PartialEq)]
pub enum ParseError {
    /// Parsing an empty string
    EmptyInput,

    /// The numeric value is missing
    MissingValue,

    /// Malformed numeric value
    InvalidValue,

    /// The unit is missing
    MissingUnit,

    /// Unknown unit
    InvalidUnit,

    /// The unit shows multiple times in the string
    DuplicateUnit,

    /// The numeric value is too large
    Overflow,
}

impl ParseError {
    fn description(&self) -> &str {
        match self {
            ParseError::EmptyInput => "empty input",
            ParseError::MissingValue => "missing value",
            ParseError::InvalidValue => "invalid value",
            ParseError::MissingUnit => "missing unit",
            ParseError::InvalidUnit => "invalid unit",
            ParseError::DuplicateUnit => "duplicate unit",
            ParseError::Overflow => "value overflow",
        }
    }
}

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

impl Error for ParseError {}