//! # Email sync report
//!//! Module dedicated to email synchronization reporting. The main
//! structure of this module is [`EmailSyncReport`].
usesuper::hunk::EmailSyncHunk;usecrate::AnyBoxedError;/// The email synchronization report.
#[derive(Debug, Default)]pubstructEmailSyncReport{/// The list of processed hunks associated with an optional error.
pubpatch:Vec<(EmailSyncHunk, Option<AnyBoxedError>)>,
}