eliza_error

Crates.ioeliza_error
lib.rseliza_error
version0.99.1
sourcesrc
created_at2019-10-16 00:19:19.945357
updated_at2019-10-16 00:28:04.325696
description“Times are bad. Children no longer obey their parents, and everyone is writing an error handling library.” — Cicero
homepagehttps://github.com/hawkw/eliza_error
repositoryhttps://github.com/hawkw/eliza_error
max_upload_size
id172839
size6,744
Eliza Weisman (hawkw)

documentation

README

“Times are bad. Children no longer obey their parents, and everyone is writing an error handling library.” — Cicero

fast, cheap, and out of control exceptions for rust.

Usage

First, add this to your Cargo.toml:

[dependencies]
eliza_error = "0.99.0";

You can now throw exceptions!

use eliza_error::{Error, throw};

fn my_great_function() -> Result<(), Error> {
    if is_everything_terrible() {
        throw!("everything is terrible!");
    }
    Ok(())
}

Eliza errors also work fine with errors from the standard library.

use eliza_error::{Error, throw};
use std::fs::File;
use std::io::prelude::*;

fn look_at_file() -> Result<(), Error> {
    let mut file = File::open("this_file_doesnt_exist.txt")?;
    let mut contents = String::new();
    file.read_to_string(&mut contents)?;
    if contents == "everything is terrible!!!" {
        throw!("wow, everything is still terrible!!!");
    }
    Ok(())
}

Why should I use this?

Commit count: 6

cargo fmt