possible 0.1.0

Rust library providing a three state enum for differentiating between an explicit null value and the absense of a value.
Documentation
1
2
3
4
5
6
7
use super::Possible;

impl<T> Default for Possible<T> {
    fn default() -> Possible<T> {
        Possible::Void
    }
}