[][src]Struct mailslurp::models::match_option::MatchOption

pub struct MatchOption {
    pub field: Option<Field>,
    pub should: Option<Should>,
    pub value: Option<String>,
}

MatchOption : Options for matching emails in an inbox. Each match option object contains a field, should and value property. Together they form logical conditions such as SUBJECT should CONTAIN value.

Fields

field: Option<Field>

The email property to match on. One of SUBJECT, TO, BCC, CC or FROM

should: Option<Should>

What criteria to apply. CONTAIN or EQUAL. Note CONTAIN is recommended due to some SMTP servers adding new lines to fields and body content.

value: Option<String>

The value you wish to compare with the value of the field specified using the should value passed. For example BODY should CONTAIN a value passed.

Implementations

impl MatchOption[src]

pub fn new() -> MatchOption[src]

Options for matching emails in an inbox. Each match option object contains a field, should and value property. Together they form logical conditions such as SUBJECT should CONTAIN value.

Trait Implementations

impl Clone for MatchOption[src]

impl Debug for MatchOption[src]

impl<'de> Deserialize<'de> for MatchOption[src]

impl PartialEq<MatchOption> for MatchOption[src]

impl Serialize for MatchOption[src]

impl StructuralPartialEq for MatchOption[src]

Auto Trait Implementations

Blanket Implementations

impl<T> Any for T where
    T: 'static + ?Sized
[src]

impl<T> Borrow<T> for T where
    T: ?Sized
[src]

impl<T> BorrowMut<T> for T where
    T: ?Sized
[src]

impl<T> DeserializeOwned for T where
    T: for<'de> Deserialize<'de>, 
[src]

impl<T> From<T> for T[src]

impl<T, U> Into<U> for T where
    U: From<T>, 
[src]

impl<T> ToOwned for T where
    T: Clone
[src]

type Owned = T

The resulting type after obtaining ownership.

impl<T, U> TryFrom<U> for T where
    U: Into<T>, 
[src]

type Error = Infallible

The type returned in the event of a conversion error.

impl<T, U> TryInto<U> for T where
    U: TryFrom<T>, 
[src]

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.