maybe 0.1.0

An enum similar to Option but can also represent undefined values
Documentation
1
2
3
4
5
6
7
8
# Maybe

A simple enum similar to `Option<T>` but with three variants:
-  `Some(T)`
- `None`
- `Void` (for representing undefined values)

Works with `serde` and `async-graphql`