no_error

Crates.iono_error
lib.rsno_error
version0.0.2
sourcesrc
created_at2020-04-07 05:16:58.283248
updated_at2020-04-07 17:06:25.045649
descriptionan error library for no_std
homepage
repositoryhttps://github.com/richardanaya/no_error/
max_upload_size
id227166
size3,231
RICHΛRD ΛNΛYΛ (richardanaya)

documentation

README

no_error

docs.rs docs

An error library for no_std + no_alloc Rust

  • macro transforms string literals into C style character array
  • no allocator required
  • support for non-C string text (i.e. len + string)
  • support for error codes if text isn't an option
use no_error::*;

extern "C" {
    fn print(x: const *u8);
}

const FAIL:ErrorCode = 42;

fn can_fail(i:i32) -> Result<()> {
    if i < 0 { 
        // programmatically appends a "/0" to end of static string
        error_message!("a failure happened","it happened in can_fail()")
    } else if i == 0 {
        // don't like c strings? supports failure codes too
        error_code!(FAIL)
    } else {
        // you don't have to specify the source if you don't want
        error_message!("a failure happened")
    }
}

fn main() {
    match can_fail() {
        Ok(_) => (),
        Err(a) => {
            print(a.cstr_description());
            print(a.cstr_source();
            if let Some(c) = a.code() {
                if c == FAIL {
                    print("secret of life".as_ptr());
                }
            }
        },
    };
}
Commit count: 32

cargo fmt