pub type Result<T> = Result<T, SdlError>;
A specialized std::result::Result type for this crate.
std::result::Result
enum Result<T> { Ok(T), Err(SdlError), }
Contains the success value
Contains the error value