Ecosyste.ms: Awesome

An open API service indexing awesome lists of open source software.

Awesome Lists | Featured Topics | Projects

https://github.com/wafflelapkin/err_or

Rust lib which allows you to convert optional error into result
https://github.com/wafflelapkin/err_or

error rust

Last synced: 1 day ago
JSON representation

Rust lib which allows you to convert optional error into result

Awesome Lists containing this project

README

        

## err_or

[![CI status](https://github.com/WaffleLapkin/err_or/workflows/Continuous%20integration/badge.svg)](https://github.com/WaffleLapkin/err_or/actions)
[![documentation (master)](https://img.shields.io/badge/docs-master-brightgreen)](https://err-or.netlify.com/)
[![documentation (docs.rs)](https://docs.rs/err_or/badge.svg)](https://docs.rs/err_or)
[![crates.io](https://img.shields.io/crates/v/err_or.svg)](https://crates.io/crates/err_or)
[![LICENSE](https://img.shields.io/badge/license-WTFPL-blueviolet.svg)](LICENSE)

Rust lib which allows you to convert `Option` into `Result<_, E>`.

```toml
[dependencies]
err_or = "0.1"
```

_Compiler support: requires rustc 1.7+ (1.0+ if compiled with `features = ["std"]`)_