pub type DatumRef<'a> = Option<ScalarRefImpl<'a>>;
enum DatumRef<'a> { None, Some(ScalarRefImpl<'a>), }
No value.
Some value of type T.
T