pub type OptResult<T> = Option<QueryResult<T>>;
enum OptResult<T> { None, Some(Result<T, QueryErr>), }
No value.
Some value of type T.
T