type Result<T> = Result<T, ()>;
enum Result<T> { Ok(T), Err(()), }
Contains the success value
Contains the error value