pub type Url2Result<T> = Result<T, Url2Error>;
Url2 Result Type
pub enum Url2Result<T> { Ok(T), Err(Url2Error), }
Contains the success value
Contains the error value