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

https://github.com/rmw-lib/rmw_err


https://github.com/rmw-lib/rmw_err

Last synced: 9 months ago
JSON representation

Awesome Lists containing this project

README

          

# rmw_err

utils for log err

`cargo add rmw_err --rename err` then

```rust
use std::fs::File;

fn main() {
if let Ok(_) = err::ok!(File::open("/not_exist")) {
err::log!(Err::<(), _>("test"));
}
}
```