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]

Creates a new Credentials Error.

  • message - The Error message for this CredentialsError.

Trait Implementations

impl Error for CredentialsError
[src]

This method is soft-deprecated. Read more

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

impl Display for CredentialsError
[src]

Formats the value using the given formatter. Read more

impl Debug for CredentialsError
[src]

Formats the value using the given formatter. Read more

impl PartialEq<CredentialsError> for CredentialsError
[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 CredentialsError
[src]

Performs the conversion.

impl From<Error> for CredentialsError
[src]

Performs the conversion.

impl From<ParseError> for CredentialsError
[src]

Performs the conversion.

Auto Trait Implementations