pub struct PrivatEmailConfig {
    pub from_email: String,
    pub to_email: String,
    pub black_list: Option<Vec<String>>,
}
Expand description

Config object for PrivatEmail.

Implements serde::Deserialize and serde::Serialize and can be composed with other consumer configs. PrivatEmailConfig: from_email: Original Recipient Email from Verified SES Domain to_email: Recipient SES verified email address which receives the forwarded email black_list: Black listed email addresses.

Fields

from_email: String

Original Recipient Email from Verified SES Domain

to_email: String

Recipient email address that receives the forwarded SES email

black_list: Option<Vec<String>>

Black Listed email addresses

Implementations

Create a new PrivatEmailConfig client struct from environment variables.

Create new PrivatEmailConfig struct from environment variables.

Create a new PrivatEmailConfig struct

Trait Implementations

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more

Formats the value using the given formatter. Read more

Default configuration for PrivatEmailConfig

Returns the “default value” for a type. Read more

This method tests for self and other values to be equal, and is used by ==. Read more

This method tests for !=.

Serialize this value into the given Serde serializer. Read more

Auto Trait Implementations

Blanket Implementations

Gets the TypeId of self. Read more

Immutably borrows from an owned value. Read more

Mutably borrows from an owned value. Read more

Returns the argument unchanged.

Calls U::from(self).

That is, this conversion is whatever the implementation of From<T> for U chooses to do.

The resulting type after obtaining ownership.

Creates owned data from borrowed data, usually by cloning. Read more

Uses borrowed data to replace owned data, usually by cloning. Read more

The type returned in the event of a conversion error.

Performs the conversion.

The type returned in the event of a conversion error.

Performs the conversion.