pub struct ReportMetadata {
pub org_name: String,
pub email: String,
pub extra_contact_info: Option<String>,
pub report_id: String,
pub date_range: DateRange,
pub errors: Vec<String>,
}Expand description
Report generator metadata (ReportMetadataType).
Fields§
§org_name: StringThe name of the organization generating the report.
email: StringContact email address for the report generator.
extra_contact_info: Option<String>Additional contact information (optional).
report_id: StringUnique identifier for this report.
date_range: DateRangeThe UTC time range covered by the messages in this report.
errors: Vec<String>Any errors encountered during report generation.
Trait Implementations§
Source§impl Clone for ReportMetadata
impl Clone for ReportMetadata
Source§fn clone(&self) -> ReportMetadata
fn clone(&self) -> ReportMetadata
Returns a duplicate of the value. Read more
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreSource§impl Debug for ReportMetadata
impl Debug for ReportMetadata
Source§impl<'de> Deserialize<'de> for ReportMetadata
impl<'de> Deserialize<'de> for ReportMetadata
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
Source§impl PartialEq for ReportMetadata
impl PartialEq for ReportMetadata
impl StructuralPartialEq for ReportMetadata
Auto Trait Implementations§
impl Freeze for ReportMetadata
impl RefUnwindSafe for ReportMetadata
impl Send for ReportMetadata
impl Sync for ReportMetadata
impl Unpin for ReportMetadata
impl UnsafeUnpin for ReportMetadata
impl UnwindSafe for ReportMetadata
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