simple-error 0.1.1

A simple Error type backed by a String
Documentation

simple-error

crates.io Build Status Coverage Status

simple-error is Rust library that provides a simple Error type which is backed by a String. It is used when all you want about the error is an error string.

Documentation

Usage

To use simple-error, first add this to your Cargo.toml:

[dependencies]
simple-error = "0.1"

Then, add this to your crate root:

extern crate simple_error;