//! Parsing of AXFR/IXFR response messages for higher level processing.
//!
//! This module provides [`XfrResponseInterpreter`] which can be used to
//! process one or more AXFR/IXFR response messages in terms of the high level
//! [`ZoneUpdate`]s that they represent without having to deal with the
//! AXFR/IXFR protocol details.
//!
//! [`ZoneUpdate`]: crate::zonetree::types::ZoneUpdate
pub use XfrResponseInterpreter;
pub use XfrZoneUpdateIterator;
pub use ;