address 0.20.0-rc.1

This library aids in processing network addresses.
use crate::{Host, HostRef};
use std::fmt::{Debug, Display, Formatter};

impl Debug for Host {
    fn fmt(&self, f: &mut Formatter<'_>) -> std::fmt::Result {
        Display::fmt(self, f)
    }
}

impl Display for Host {
    fn fmt(&self, f: &mut Formatter<'_>) -> std::fmt::Result {
        Display::fmt(&self.to_ref(), f)
    }
}

impl<'a> Debug for HostRef<'a> {
    fn fmt(&self, f: &mut Formatter<'_>) -> std::fmt::Result {
        Display::fmt(self, f)
    }
}

impl<'a> Display for HostRef<'a> {
    fn fmt(&self, f: &mut Formatter<'_>) -> std::fmt::Result {
        match self {
            Self::Name(domain) => Display::fmt(domain, f),
            Self::Address(ip) => Display::fmt(ip, f),
        }
    }
}

#[cfg(test)]
mod tests {
    use crate::{Domain, Host, IPv4Address, IPv6Address};

    #[test]
    fn display() {
        let test_cases: &[(Host, &str)] = &[
            (Domain::localhost().to_host(), "localhost"),
            (IPv4Address::LOCALHOST.to_host(), "127.0.0.1"),
            (IPv6Address::LOCALHOST.to_host(), "::1"),
        ];

        for (host, expected) in test_cases {
            let result: String = host.to_string();
            assert_eq!(result, *expected, "host={:?}", host);
        }
    }
}