Expand description
§whos("th.at")?
- Rust whois library
Query data using the WHOIS protocol (RFC 3912).
let domain = whos::domain("debian.org").unwrap().unwrap();
assert_eq!(domain.name, "debian.org");
assert_eq!(domain.suffix, ".org");
assert_eq!(domain.created.as_deref(), Some("1999-03-10T05:00:00Z"));
Parsing is currently focused on domain names.
Modules§
- domain
- WHOIS data parsing for domain names.