pub type WinResult<T> = Result<T, Error>;
A specialized Result type that provides Windows error information.
Result
pub enum WinResult<T> { Ok(T), Err(Error), }
Contains the success value
Contains the error value