pub struct SOA {
pub domain_name: DomainName,
pub ttl: u32,
pub class: Class,
pub m_name: DomainName,
pub r_name: DomainName,
pub serial: u32,
pub refresh: u32,
pub retry: u32,
pub expire: u32,
pub min_ttl: u32,
}
Expand description
The start of a zone of authority resource record type.
Fields§
§domain_name: DomainName
§ttl: u32
§class: Class
§m_name: DomainName
§r_name: DomainName
§serial: u32
§refresh: u32
§retry: u32
§expire: u32
§min_ttl: u32
Implementations§
Trait Implementations§
impl Eq for SOA
impl StructuralPartialEq for SOA
Auto Trait Implementations§
impl Freeze for SOA
impl RefUnwindSafe for SOA
impl Send for SOA
impl Sync for SOA
impl Unpin for SOA
impl UnwindSafe for SOA
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