Enum rusoto_devicefarm::ScheduleRunError[][src]

pub enum ScheduleRunError {
    Argument(String),
    Idempotency(String),
    LimitExceeded(String),
    NotFound(String),
    ServiceAccount(String),
    HttpDispatch(HttpDispatchError),
    Credentials(CredentialsError),
    Validation(String),
    Unknown(String),
}

Errors returned by ScheduleRun

Variants

An invalid argument was specified.

An entity with the same name already exists.

A limit was exceeded.

The specified entity was not found.

There was a problem with the service account.

An error occurred dispatching the HTTP request

An error was encountered with AWS credentials.

A validation error occurred. Details from AWS are provided.

An unknown error occurred. The raw HTTP response is provided.

Methods

impl ScheduleRunError
[src]

Trait Implementations

impl Debug for ScheduleRunError
[src]

Formats the value using the given formatter. Read more

impl PartialEq for ScheduleRunError
[src]

This method tests for self and other values to be equal, and is used by ==. Read more

This method tests for !=.

impl From<Error> for ScheduleRunError
[src]

Performs the conversion.

impl From<CredentialsError> for ScheduleRunError
[src]

Performs the conversion.

impl From<HttpDispatchError> for ScheduleRunError
[src]

Performs the conversion.

impl From<Error> for ScheduleRunError
[src]

Performs the conversion.

impl Display for ScheduleRunError
[src]

Formats the value using the given formatter. Read more

impl Error for ScheduleRunError
[src]

This method is soft-deprecated. Read more

The lower-level cause of this error, if any. Read more

Auto Trait Implementations