type MockResult<T> = Option<Result<T, String>>;
enum MockResult<T> { None, Some(Result<T, String>), }
No value.
Some value of type T.
T