pub type SearchResult = Result<Option<FoundVersion>, SearchError>;
Aliased Type§
enum SearchResult {
Ok(Option<FoundVersion>),
Err(SearchError),
}
Variants§
Ok(Option<FoundVersion>)
Contains the success value
Err(SearchError)
Contains the error value