Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
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
- Host: GitHub
- URL: https://github.com/wafflelapkin/err_or
- Owner: WaffleLapkin
- License: other
- Created: 2020-07-03T07:36:05.000Z (over 4 years ago)
- Default Branch: master
- Last Pushed: 2020-12-08T22:24:18.000Z (about 4 years ago)
- Last Synced: 2025-01-26T19:13:54.091Z (6 days ago)
- Topics: error, rust
- Language: Rust
- Homepage: https://docs.rs/err_or/
- Size: 8.79 KB
- Stars: 2
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
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"]`)_