Struct mailslurp::models::wait_for_conditions::WaitForConditions[][src]

pub struct WaitForConditions {
    pub count: Option<i32>,
    pub count_type: Option<CountType>,
    pub inbox_id: Option<String>,
    pub matches: Option<Vec<MatchOption>>,
    pub sort_direction: Option<SortDirection>,
    pub timeout: Option<i64>,
    pub unread_only: Option<bool>,
}

WaitForConditions : Conditions that a waitForXEmails endpoint operates on. The methods wait until given conditions are met or a timeout is reached. If the conditions are met without needing to wait the results will be returned immediately.

Fields

count: Option<i32>

Number of results that should match conditions. Either exactly or at least this amount based on the countType. If count condition is not met and the timeout has not been reached the waitFor method will retry the operation.

count_type: Option<CountType>

How should the found count be compared to the expected count.

inbox_id: Option<String>

ID of inbox to search within and apply conditions to. Essentially filtering the emails found to give a count.

matches: Option<Vec<MatchOption>>

Conditions that should be matched for an email to qualify for results. Each condition will be applied in order to each email within an inbox to filter a result list of matching emails you are waiting for.

sort_direction: Option<SortDirection>

Direction to sort matching emails by created time

timeout: Option<i64>

Max time in milliseconds to retry the waitFor operation until conditions are met.

unread_only: Option<bool>

Apply conditions only to unread emails. All emails begin with read=false. An email is marked read=true when an EmailDto representation of it has been returned to the user at least once. For example you have called getEmail or waitForLatestEmail etc., or you have viewed the email in the dashboard.

Implementations

impl WaitForConditions[src]

pub fn new() -> WaitForConditions[src]

Conditions that a waitForXEmails endpoint operates on. The methods wait until given conditions are met or a timeout is reached. If the conditions are met without needing to wait the results will be returned immediately.

Trait Implementations

impl Clone for WaitForConditions[src]

impl Debug for WaitForConditions[src]

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

impl PartialEq<WaitForConditions> for WaitForConditions[src]

impl Serialize for WaitForConditions[src]

impl StructuralPartialEq for WaitForConditions[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> Instrument 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.