pub type ImageLoadResult = Result<ImagePoll>;
enum ImageLoadResult { Ok(ImagePoll), Err(LoadError), }
Contains the success value
Contains the error value