pub struct AcceptRecipientRequest {
    pub name: String,
    pub local: Option<SocketAddr>,
    pub peer: Option<SocketAddr>,
    pub helo: Option<SmtpHelo>,
    pub mail: Option<SmtpMail>,
    pub id: String,
    pub rcpt: SmtpPath,
}
Expand description

Request to check if mail is accepted for given recipient

Fields

name: String

Service name

local: Option<SocketAddr>

Local server endpoint

peer: Option<SocketAddr>

Remote peer endpoint

helo: Option<SmtpHelo>

The SMTP helo sent by peer

mail: Option<SmtpMail>

The SMTP mail from:path sent by peer

id: String

unique mail request identifier

rcpt: SmtpPath

The SMTP rcpt to:path sent by peer we want to check

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

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.