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