pub struct Report {
pub version: Option<String>,
pub report_metadata: ReportMetadata,
pub policy_published: PolicyPublished,
pub records: Vec<Record>,
}Expand description
Top-level DMARC aggregate feedback report (<feedback>).
Defined as the root element in RFC 7489 Appendix C.
Fields§
§version: Option<String>Report format version (optional, xs:decimal).
report_metadata: ReportMetadataMetadata about the report generator.
policy_published: PolicyPublishedThe DMARC policy published for the domain covered by this report.
records: Vec<Record>One or more individual message records.
Trait Implementations§
Source§impl<'de> Deserialize<'de> for Report
impl<'de> Deserialize<'de> for Report
Source§fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
impl StructuralPartialEq for Report
Auto Trait Implementations§
impl Freeze for Report
impl RefUnwindSafe for Report
impl Send for Report
impl Sync for Report
impl Unpin for Report
impl UnsafeUnpin for Report
impl UnwindSafe for Report
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