dna-rs 0.2.0

Async Rust client for the Domain Name API REST gateway
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
//! `impl DnaClient` blocks, split by API domain.
//!
//! Each sub-module contains one focused `impl DnaClient` block and its
//! private helpers, keeping files short and easy to navigate.

pub(crate) mod account;
pub(crate) mod availability;
pub(crate) mod contact;
pub(crate) mod domain;
pub(crate) mod nameserver;
pub(crate) mod tld;
pub(crate) mod transfer;
pub(crate) mod util;