Skip to main content

ResolverResult

Type Alias ResolverResult 

Source
pub type ResolverResult = Result<String, Error>;
Expand description

Result of a Resolver::resolve_url call, yielding the destination URL.

Aliased Type§

pub enum ResolverResult {
    Ok(String),
    Err(Error),
}

Variants§

§1.0.0

Ok(String)

Contains the success value

§1.0.0

Err(Error)

Contains the error value