Expand description
§DnsRobot
Official Rust client for DNS Robot — 53 free online DNS and network tools.
Zero external dependencies. Uses only std::net::TcpStream for HTTP requests.
§Usage
use dnsrobot::DnsRobotClient;
let client = DnsRobotClient::new();
let result = client.dns_lookup("example.com", Some("A"), Some("8.8.8.8")).unwrap();
println!("{}", result);Structs§
- DnsRobot
Client - Client for the DNS Robot API.