shortcuts 0.1.0

A crate with shortcuts for popular methods of popular types that allow you to write your blazingly fast code blazingly fast
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
**Shortcuts** for popular methods of popular types that allow you to write
your **blazingly fast** code **blazingly fast**.

```rust
use shortcuts::prelude::*;

let v = Some("blazingly fast");

v.unwrap(); // too long to type
v.un();     // perfection
```

See the [documentation](https://docs.rs/sqlx/latest/shortcuts).