pub struct CSync<'a> {
pub serial: u32,
pub flags: u16,
pub type_bit_maps: Characters<'a>,
}Expand description
§Child-to-Parent Synchronization (CSYNC) Record
This record type is used to publish the synchronization state of a child zone to its parent zone.
Fields§
§serial: u32serial is the serial number of the zone
flags: u16flags is a bitmap of flags (see RFC 7477)
type_bit_maps: Characters<'a>type_bit_maps is the set of RRset types present at the next owner name in the zone
Trait Implementations§
impl<'a> Copy for CSync<'a>
impl<'a> StructuralPartialEq for CSync<'a>
Auto Trait Implementations§
impl<'a> Freeze for CSync<'a>
impl<'a> RefUnwindSafe for CSync<'a>
impl<'a> Send for CSync<'a>
impl<'a> Sync for CSync<'a>
impl<'a> Unpin for CSync<'a>
impl<'a> UnwindSafe for CSync<'a>
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