err_or 0.1.0

Small lib that helps converting `Option<E>` into `Result<_, E>`
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
## 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<E>` into `Result<_, E>`.

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

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