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