use rsip_derives::{IntoParam, NewType};
#[derive(NewType, IntoParam, Debug, PartialEq, Eq, Clone)]
pub struct Maddr(String);
#[cfg(feature = "test-utils")]
impl testing_utils::Randomize for Maddr {
fn random() -> Self {
Self(std::net::IpAddr::random().to_string())
}
}