blob: a160e4b4ca34ea44b1a277b447173d6003bb6e23 (
plain)
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
|
#![feature(plugin, slice_patterns, core)]
#![plugin(regex_macros)]
extern crate regex;
extern crate chrono;
#[macro_use]
extern crate log as l;
pub mod log;
pub mod format;
use std::convert::From;
use std::{ io, result };
use chrono::format::ParseError;
pub type Result<T> = result::Result<T, IlcError>;
#[derive(Debug)]
pub enum IlcError {
Parse(String),
Chrono(ParseError),
Io(io::Error)
}
impl From<ParseError> for IlcError {
fn from(err: ParseError) -> IlcError { IlcError::Chrono(err) }
}
impl From<io::Error> for IlcError {
fn from(err: io::Error) -> IlcError { IlcError::Io(err) }
}
|