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