pub type Result<T> = Result<T, DrawError>;
库的统一结果类型
pub enum Result<T> { Ok(T), Err(DrawError), }
Contains the success value
Contains the error value