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