pub type SearchResult = Result<Option<String>, Arc<Error>>;

Aliased Type§

enum SearchResult {
    Ok(Option<String>),
    Err(Arc<Error>),
}

Variants§

§1.0.0

Ok(Option<String>)

Contains the success value

§1.0.0

Err(Arc<Error>)

Contains the error value