pub struct ApiKeyGeneratedEmail {
pub to: String,
pub name: String,
pub key_name: String,
pub created_at: String,
}Expand description
API key generated notification
Fields§
§to: StringRecipient email address
name: StringUser’s display name
key_name: StringAPI key name/label
created_at: StringWhen the key was created (formatted)
Trait Implementations§
Source§impl Clone for ApiKeyGeneratedEmail
impl Clone for ApiKeyGeneratedEmail
Source§fn clone(&self) -> ApiKeyGeneratedEmail
fn clone(&self) -> ApiKeyGeneratedEmail
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 ApiKeyGeneratedEmail
impl Debug for ApiKeyGeneratedEmail
Source§impl EmailTemplate for ApiKeyGeneratedEmail
impl EmailTemplate for ApiKeyGeneratedEmail
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 ApiKeyGeneratedEmail
impl RefUnwindSafe for ApiKeyGeneratedEmail
impl Send for ApiKeyGeneratedEmail
impl Sync for ApiKeyGeneratedEmail
impl Unpin for ApiKeyGeneratedEmail
impl UnwindSafe for ApiKeyGeneratedEmail
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