pub struct WeeklyDigestEmail {
pub to: String,
pub name: String,
pub week_start: String,
pub week_end: String,
pub apps_monitored: u32,
pub apps_passing: u32,
pub apps_with_issues: u32,
pub new_issues_count: u32,
pub digest_content: String,
pub dashboard_url: String,
}Expand description
Weekly compliance digest email
Fields§
§to: String§name: String§week_start: String§week_end: String§apps_monitored: u32§apps_passing: u32§apps_with_issues: u32§new_issues_count: u32§digest_content: String§dashboard_url: StringTrait Implementations§
Source§impl Clone for WeeklyDigestEmail
impl Clone for WeeklyDigestEmail
Source§fn clone(&self) -> WeeklyDigestEmail
fn clone(&self) -> WeeklyDigestEmail
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 WeeklyDigestEmail
impl Debug for WeeklyDigestEmail
Source§impl<'de> Deserialize<'de> for WeeklyDigestEmail
impl<'de> Deserialize<'de> for WeeklyDigestEmail
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 EmailTemplate for WeeklyDigestEmail
impl EmailTemplate for WeeklyDigestEmail
Source§fn template_name(&self) -> &'static str
fn template_name(&self) -> &'static str
Get the template name (without extension) Read more
Source§fn priority(&self) -> EmailPriority
fn priority(&self) -> EmailPriority
Get the priority level (for queue ordering)
Auto Trait Implementations§
impl Freeze for WeeklyDigestEmail
impl RefUnwindSafe for WeeklyDigestEmail
impl Send for WeeklyDigestEmail
impl Sync for WeeklyDigestEmail
impl Unpin for WeeklyDigestEmail
impl UnwindSafe for WeeklyDigestEmail
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