pub type Result<T = (), E = EventLoopError> = Result<T, E>;
A result alias that defaults to the result type commonly used throughout this crate.
enum Result<T = (), E = EventLoopError> { Ok(T), Err(E), }
Contains the success value
Contains the error value