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