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