pub type Url2Result<T> = Result<T, Url2Error>;
Expand description

Url2 Result Type

Aliased Type§

enum Url2Result<T> {
    Ok(T),
    Err(Url2Error),
}

Variants§

§1.0.0

Ok(T)

Contains the success value

§1.0.0

Err(Url2Error)

Contains the error value