maybe 0.1.0

An enum similar to Option but can also represent undefined values
Documentation

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