pub struct TraceSmtpClientV1Request {
pub campaign: Vec<String>,
pub tenant: Vec<String>,
pub domain: Vec<String>,
pub routing_domain: Vec<String>,
pub egress_pool: Vec<String>,
pub egress_source: Vec<String>,
pub mail_from: Vec<String>,
pub rcpt_to: Vec<String>,
pub source_addr: Option<CidrSet>,
pub mx_host: Vec<String>,
pub ready_queue: Vec<String>,
pub mx_addr: Option<CidrSet>,
}
Fields§
§campaign: Vec<String>
The campaign name to match. If omitted, any campaign will match.
tenant: Vec<String>
The tenant to match. If omitted, any tenant will match.
domain: Vec<String>
The domain name to match. If omitted, any domain will match.
routing_domain: Vec<String>
The routing_domain name to match. If omitted, any routing_domain will match.
egress_pool: Vec<String>
The egress pool name to match. If omitted, any egress pool will match.
egress_source: Vec<String>
The egress source name to match. If omitted, any egress source will match.
mail_from: Vec<String>
The envelope sender to match. If omitted, any will match.
rcpt_to: Vec<String>
The envelope recipient to match. If omitted, any will match.
source_addr: Option<CidrSet>
The source address to match. If omitted, any will match.
mx_host: Vec<String>
The mx hostname to match. If omitted, any will match.
ready_queue: Vec<String>
The ready queue name to match. If omitted, any will match.
mx_addr: Option<CidrSet>
The mx ip address to match. If omitted, any will match.
Trait Implementations§
source§impl Debug for TraceSmtpClientV1Request
impl Debug for TraceSmtpClientV1Request
source§impl<'de> Deserialize<'de> for TraceSmtpClientV1Request
impl<'de> Deserialize<'de> for TraceSmtpClientV1Request
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 Serialize for TraceSmtpClientV1Request
impl Serialize for TraceSmtpClientV1Request
Auto Trait Implementations§
impl Freeze for TraceSmtpClientV1Request
impl RefUnwindSafe for TraceSmtpClientV1Request
impl Send for TraceSmtpClientV1Request
impl Sync for TraceSmtpClientV1Request
impl Unpin for TraceSmtpClientV1Request
impl UnwindSafe for TraceSmtpClientV1Request
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
§impl<T> Instrument for T
impl<T> Instrument for T
§fn instrument(self, span: Span) -> Instrumented<Self>
fn instrument(self, span: Span) -> Instrumented<Self>
§fn in_current_span(self) -> Instrumented<Self>
fn in_current_span(self) -> Instrumented<Self>
source§impl<T> IntoEither for T
impl<T> IntoEither for T
source§fn into_either(self, into_left: bool) -> Either<Self, Self>
fn into_either(self, into_left: bool) -> Either<Self, Self>
Converts
self
into a Left
variant of Either<Self, Self>
if into_left
is true
.
Converts self
into a Right
variant of Either<Self, Self>
otherwise. Read moresource§fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
Converts
self
into a Left
variant of Either<Self, Self>
if into_left(&self)
returns true
.
Converts self
into a Right
variant of Either<Self, Self>
otherwise. Read more