pub type SearchResult = Result<Duration, SearchFailure>;Expand description
A fixed-point search either returns the fixed point (of type Duration) or a SearchFailure explaining why the search failed.
Aliased Type§
pub enum SearchResult {
Ok(Duration),
Err(SearchFailure),
}