pub type LookupResult<T> = Result<T, LookupError>;
Expand description

Result of a Lookup in the Catalog and Authority

Aliased Type§

enum LookupResult<T> {
    Ok(T),
    Err(LookupError),
}

Variants§

§1.0.0

Ok(T)

Contains the success value

§1.0.0

Err(LookupError)

Contains the error value