pub type LoadResult<T> = Result<T, LoadError>;
A result type with a data-loading-related error.
enum LoadResult<T> { Ok(T), Err(LoadError), }
Contains the success value
Contains the error value