pub type SearchResult = Result<SearchOutcome<Path, SearchStats>, GridSearchError>;Expand description
Grid search return type: validation error, or found/no-path with stats.
Aliased Type§
pub enum SearchResult {
Ok(SearchOutcome<Path, SearchStats>),
Err(GridSearchError),
}Variants§
Ok(SearchOutcome<Path, SearchStats>)
Contains the success value
Err(GridSearchError)
Contains the error value