aboutsummaryrefslogtreecommitdiff
path: root/src/common/nameserver.rs
blob: 3507a85dc0f9579326d8ea2699fa771610adbd05 (plain) (blame)
1
2
3
4
5
6
7
8
use serde_derive::{Deserialize, Serialize};

/// Information on a slave nameserver.
#[derive(Clone, Debug, Deserialize, Serialize)]
pub struct SlaveDns {
    pub hostname: String,
    pub address: String,
}