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>,
}
Expand description

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. Can include unreadOnly to ignore already read emails that were returned in an API call or viewing in the dashboard. Can also include matches for emails containing from, subject, hasAttachments etc.

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

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. Can include unreadOnly to ignore already read emails that were returned in an API call or viewing in the dashboard. Can also include matches for emails containing from, subject, hasAttachments etc.

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

Deserialize this value from the given Serde deserializer. 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

Performs the conversion.

Instruments this type with the provided Span, returning an Instrumented wrapper. Read more

Instruments this type with the current Span, returning an Instrumented wrapper. Read more

Performs the conversion.

The resulting type after obtaining ownership.

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

🔬 This is a nightly-only experimental API. (toowned_clone_into)

recently added

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.