ignite 0.1.6

ignite serves the role as a "batteries included" addon to stdlib providing useful stuff and higher level functions along with abstractions.
Documentation
1
2
3
4
5
6
7
8
9
10
11
use super::Error;

/// Construct an error.
#[inline]
pub fn const_error(errormessage: String, exitcode: i32, exit: bool) -> Error {
    Error {
        errormessage: errormessage,
        exitcode: exitcode,
        exit: exit,
    }
}