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