Struct rusoto_core::CredentialsError [] [src]

pub struct CredentialsError {
    pub message: String,
}

Represents an Error that has occured during the fetching Credentials Phase.

This generally is an error message from one of our underlying libraries, however we wrap it up with this type so we can export one single error type.

Fields

The underlying error message for the credentials error.

Methods

impl CredentialsError
[src]

[src]

Creates a new Credentials Error.

  • message - The Error message for this CredentialsError.

Trait Implementations

impl Error for CredentialsError
[src]

[src]

A short description of the error. Read more

1.0.0
[src]

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

impl From<Error> for CredentialsError
[src]

[src]

Performs the conversion.

impl From<UriError> for CredentialsError
[src]

[src]

Performs the conversion.

impl From<ParseError> for CredentialsError
[src]

[src]

Performs the conversion.

impl PartialEq<CredentialsError> for CredentialsError
[src]

[src]

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

[src]

This method tests for !=.

impl Debug for CredentialsError
[src]

[src]

Formats the value using the given formatter.

impl Display for CredentialsError
[src]

[src]

Formats the value using the given formatter. Read more