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