reflectapi 0.16.10

ReflectAPI is a library for Rust code-first web service API declaration and corresponding clients code generation tools.
Documentation
#[derive(PartialEq, Eq, Hash, Debug, Clone)]
pub struct Url {}

impl Url {
    pub fn join(&self, _path: &str) -> Result<Url, ParseError> {
        todo!()
    }

    pub fn cannot_be_a_base(&self) -> bool {
        todo!()
    }
}

impl std::fmt::Display for Url {
    fn fmt(&self, _f: &mut std::fmt::Formatter<'_>) -> std::fmt::Result {
        todo!()
    }
}

#[derive(Debug)]
pub enum ParseError {
    RelativeUrlWithCannotBeABaseBase,
}

impl std::fmt::Display for ParseError {
    fn fmt(&self, _f: &mut std::fmt::Formatter<'_>) -> std::fmt::Result {
        todo!()
    }
}

impl std::str::FromStr for Url {
    type Err = ParseError;

    fn from_str(_s: &str) -> Result<Self, Self::Err> {
        todo!()
    }
}