1 2 3 4 5 6 7 8 9 10 11
# Easy Validation of Either IP Addresses or Domains #### Validate `Domain` ```rust assert_eq!(true, ValAddr::is_domain("example.com")); ``` #### Validate `IP` Address ```rust assert_eq!(true, ValAddr::is_ip("192.168.176.43")); ```