pub struct DnsSoa {
pub pnm: String,
pub ram: String,
pub serial: u32,
pub interv_refr: u32,
pub interv_retry: u32,
pub expire_limit: u32,
pub min_ttl: u32,
}
Fields§
§pnm: String
primary name server
ram: String
responsible authority mailbox
serial: u32
serial number
interv_refr: u32
refresh interval
interv_retry: u32
retry interval
expire_limit: u32
expire limit
min_ttl: u32
minimum TTL
Trait Implementations§
impl Eq for DnsSoa
impl StructuralPartialEq for DnsSoa
Auto Trait Implementations§
impl Freeze for DnsSoa
impl RefUnwindSafe for DnsSoa
impl Send for DnsSoa
impl Sync for DnsSoa
impl Unpin for DnsSoa
impl UnwindSafe for DnsSoa
Blanket Implementations§
Source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
Source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more