#[non_exhaustive]pub enum Error {
Show 29 variants
BatchEntryIdsNotDistinct(BatchEntryIdsNotDistinct),
BatchRequestTooLong(BatchRequestTooLong),
EmptyBatchRequest(EmptyBatchRequest),
InvalidAddress(InvalidAddress),
InvalidAttributeName(InvalidAttributeName),
InvalidAttributeValue(InvalidAttributeValue),
InvalidBatchEntryId(InvalidBatchEntryId),
InvalidIdFormat(InvalidIdFormat),
InvalidMessageContents(InvalidMessageContents),
InvalidSecurity(InvalidSecurity),
KmsAccessDenied(KmsAccessDenied),
KmsDisabled(KmsDisabled),
KmsInvalidKeyUsage(KmsInvalidKeyUsage),
KmsInvalidState(KmsInvalidState),
KmsNotFound(KmsNotFound),
KmsOptInRequired(KmsOptInRequired),
KmsThrottled(KmsThrottled),
MessageNotInflight(MessageNotInflight),
OverLimit(OverLimit),
PurgeQueueInProgress(PurgeQueueInProgress),
QueueDeletedRecently(QueueDeletedRecently),
QueueDoesNotExist(QueueDoesNotExist),
QueueNameExists(QueueNameExists),
ReceiptHandleIsInvalid(ReceiptHandleIsInvalid),
RequestThrottled(RequestThrottled),
ResourceNotFoundException(ResourceNotFoundException),
TooManyEntriesInBatchRequest(TooManyEntriesInBatchRequest),
UnsupportedOperation(UnsupportedOperation),
Unhandled(Unhandled),
}
Expand description
All possible error types for this service.
Variants (Non-exhaustive)§
This enum is marked as non-exhaustive
BatchEntryIdsNotDistinct(BatchEntryIdsNotDistinct)
Two or more batch entries in the request have the same Id
.
BatchRequestTooLong(BatchRequestTooLong)
The length of all the messages put together is more than the limit.
EmptyBatchRequest(EmptyBatchRequest)
The batch request doesn't contain any entries.
InvalidAddress(InvalidAddress)
The specified ID is invalid.
InvalidAttributeName(InvalidAttributeName)
The specified attribute doesn't exist.
InvalidAttributeValue(InvalidAttributeValue)
A queue attribute value is invalid.
InvalidBatchEntryId(InvalidBatchEntryId)
The Id
of a batch entry in a batch request doesn't abide by the specification.
InvalidIdFormat(InvalidIdFormat)
The specified receipt handle isn't valid for the current version.
InvalidMessageContents(InvalidMessageContents)
The message contains characters outside the allowed set.
InvalidSecurity(InvalidSecurity)
The request was not made over HTTPS or did not use SigV4 for signing.
KmsAccessDenied(KmsAccessDenied)
The caller doesn't have the required KMS access.
KmsDisabled(KmsDisabled)
The request was denied due to request throttling.
KmsInvalidKeyUsage(KmsInvalidKeyUsage)
The request was rejected for one of the following reasons:
-
The KeyUsage value of the KMS key is incompatible with the API operation.
-
The encryption algorithm or signing algorithm specified for the operation is incompatible with the type of key material in the KMS key (KeySpec).
KmsInvalidState(KmsInvalidState)
The request was rejected because the state of the specified resource is not valid for this request.
KmsNotFound(KmsNotFound)
The request was rejected because the specified entity or resource could not be found.
KmsOptInRequired(KmsOptInRequired)
The request was rejected because the specified key policy isn't syntactically or semantically correct.
KmsThrottled(KmsThrottled)
Amazon Web Services KMS throttles requests for the following conditions.
MessageNotInflight(MessageNotInflight)
The specified message isn't in flight.
OverLimit(OverLimit)
The specified action violates a limit. For example, ReceiveMessage
returns this error if the maximum number of in flight messages is reached and AddPermission
returns this error if the maximum number of permissions for the queue is reached.
PurgeQueueInProgress(PurgeQueueInProgress)
Indicates that the specified queue previously received a PurgeQueue
request within the last 60 seconds (the time it can take to delete the messages in the queue).
QueueDeletedRecently(QueueDeletedRecently)
You must wait 60 seconds after deleting a queue before you can create another queue with the same name.
QueueDoesNotExist(QueueDoesNotExist)
Ensure that the QueueUrl
is correct and that the queue has not been deleted.
QueueNameExists(QueueNameExists)
A queue with this name already exists. Amazon SQS returns this error only if the request includes attributes whose values differ from those of the existing queue.
ReceiptHandleIsInvalid(ReceiptHandleIsInvalid)
The specified receipt handle isn't valid.
RequestThrottled(RequestThrottled)
The request was denied due to request throttling.
-
Exceeds the permitted request rate for the queue or for the recipient of the request.
-
Ensure that the request rate is within the Amazon SQS limits for sending messages. For more information, see Amazon SQS quotas in the Amazon SQS Developer Guide.
ResourceNotFoundException(ResourceNotFoundException)
One or more specified resources don't exist.
TooManyEntriesInBatchRequest(TooManyEntriesInBatchRequest)
The batch request contains more entries than permissible. For Amazon SQS, the maximum number of entries you can include in a single SendMessageBatch, DeleteMessageBatch, or ChangeMessageVisibilityBatch request is 10.
UnsupportedOperation(UnsupportedOperation)
Error code 400. Unsupported operation.
Unhandled(Unhandled)
Unhandled
directly is not forwards compatible. Instead, match using a variable wildcard pattern and check .code()
:
err if err.code() == Some("SpecificExceptionCode") => { /* handle the error */ }
See ProvideErrorMetadata
for what information is available for the error.An unexpected error occurred (e.g., invalid JSON returned by the service or an unknown error code).
Trait Implementations§
Source§impl Error for Error
impl Error for Error
Source§fn source(&self) -> Option<&(dyn Error + 'static)>
fn source(&self) -> Option<&(dyn Error + 'static)>
1.0.0 · Source§fn description(&self) -> &str
fn description(&self) -> &str
Source§impl From<AddPermissionError> for Error
impl From<AddPermissionError> for Error
Source§fn from(err: AddPermissionError) -> Self
fn from(err: AddPermissionError) -> Self
Source§impl From<BuildError> for Error
impl From<BuildError> for Error
Source§fn from(value: BuildError) -> Self
fn from(value: BuildError) -> Self
Source§impl From<CancelMessageMoveTaskError> for Error
impl From<CancelMessageMoveTaskError> for Error
Source§fn from(err: CancelMessageMoveTaskError) -> Self
fn from(err: CancelMessageMoveTaskError) -> Self
Source§impl From<ChangeMessageVisibilityBatchError> for Error
impl From<ChangeMessageVisibilityBatchError> for Error
Source§fn from(err: ChangeMessageVisibilityBatchError) -> Self
fn from(err: ChangeMessageVisibilityBatchError) -> Self
Source§impl From<ChangeMessageVisibilityError> for Error
impl From<ChangeMessageVisibilityError> for Error
Source§fn from(err: ChangeMessageVisibilityError) -> Self
fn from(err: ChangeMessageVisibilityError) -> Self
Source§impl From<CreateQueueError> for Error
impl From<CreateQueueError> for Error
Source§fn from(err: CreateQueueError) -> Self
fn from(err: CreateQueueError) -> Self
Source§impl From<DeleteMessageBatchError> for Error
impl From<DeleteMessageBatchError> for Error
Source§fn from(err: DeleteMessageBatchError) -> Self
fn from(err: DeleteMessageBatchError) -> Self
Source§impl From<DeleteMessageError> for Error
impl From<DeleteMessageError> for Error
Source§fn from(err: DeleteMessageError) -> Self
fn from(err: DeleteMessageError) -> Self
Source§impl From<DeleteQueueError> for Error
impl From<DeleteQueueError> for Error
Source§fn from(err: DeleteQueueError) -> Self
fn from(err: DeleteQueueError) -> Self
Source§impl From<GetQueueAttributesError> for Error
impl From<GetQueueAttributesError> for Error
Source§fn from(err: GetQueueAttributesError) -> Self
fn from(err: GetQueueAttributesError) -> Self
Source§impl From<GetQueueUrlError> for Error
impl From<GetQueueUrlError> for Error
Source§fn from(err: GetQueueUrlError) -> Self
fn from(err: GetQueueUrlError) -> Self
Source§impl From<ListDeadLetterSourceQueuesError> for Error
impl From<ListDeadLetterSourceQueuesError> for Error
Source§fn from(err: ListDeadLetterSourceQueuesError) -> Self
fn from(err: ListDeadLetterSourceQueuesError) -> Self
Source§impl From<ListMessageMoveTasksError> for Error
impl From<ListMessageMoveTasksError> for Error
Source§fn from(err: ListMessageMoveTasksError) -> Self
fn from(err: ListMessageMoveTasksError) -> Self
Source§impl From<ListQueueTagsError> for Error
impl From<ListQueueTagsError> for Error
Source§fn from(err: ListQueueTagsError) -> Self
fn from(err: ListQueueTagsError) -> Self
Source§impl From<ListQueuesError> for Error
impl From<ListQueuesError> for Error
Source§fn from(err: ListQueuesError) -> Self
fn from(err: ListQueuesError) -> Self
Source§impl From<PurgeQueueError> for Error
impl From<PurgeQueueError> for Error
Source§fn from(err: PurgeQueueError) -> Self
fn from(err: PurgeQueueError) -> Self
Source§impl From<ReceiveMessageError> for Error
impl From<ReceiveMessageError> for Error
Source§fn from(err: ReceiveMessageError) -> Self
fn from(err: ReceiveMessageError) -> Self
Source§impl From<RemovePermissionError> for Error
impl From<RemovePermissionError> for Error
Source§fn from(err: RemovePermissionError) -> Self
fn from(err: RemovePermissionError) -> Self
Source§impl<R> From<SdkError<AddPermissionError, R>> for Error
impl<R> From<SdkError<AddPermissionError, R>> for Error
Source§fn from(err: SdkError<AddPermissionError, R>) -> Self
fn from(err: SdkError<AddPermissionError, R>) -> Self
Source§impl<R> From<SdkError<CancelMessageMoveTaskError, R>> for Error
impl<R> From<SdkError<CancelMessageMoveTaskError, R>> for Error
Source§fn from(err: SdkError<CancelMessageMoveTaskError, R>) -> Self
fn from(err: SdkError<CancelMessageMoveTaskError, R>) -> Self
Source§impl<R> From<SdkError<ChangeMessageVisibilityBatchError, R>> for Error
impl<R> From<SdkError<ChangeMessageVisibilityBatchError, R>> for Error
Source§fn from(err: SdkError<ChangeMessageVisibilityBatchError, R>) -> Self
fn from(err: SdkError<ChangeMessageVisibilityBatchError, R>) -> Self
Source§impl<R> From<SdkError<ChangeMessageVisibilityError, R>> for Error
impl<R> From<SdkError<ChangeMessageVisibilityError, R>> for Error
Source§fn from(err: SdkError<ChangeMessageVisibilityError, R>) -> Self
fn from(err: SdkError<ChangeMessageVisibilityError, R>) -> Self
Source§impl<R> From<SdkError<CreateQueueError, R>> for Error
impl<R> From<SdkError<CreateQueueError, R>> for Error
Source§fn from(err: SdkError<CreateQueueError, R>) -> Self
fn from(err: SdkError<CreateQueueError, R>) -> Self
Source§impl<R> From<SdkError<DeleteMessageBatchError, R>> for Error
impl<R> From<SdkError<DeleteMessageBatchError, R>> for Error
Source§fn from(err: SdkError<DeleteMessageBatchError, R>) -> Self
fn from(err: SdkError<DeleteMessageBatchError, R>) -> Self
Source§impl<R> From<SdkError<DeleteMessageError, R>> for Error
impl<R> From<SdkError<DeleteMessageError, R>> for Error
Source§fn from(err: SdkError<DeleteMessageError, R>) -> Self
fn from(err: SdkError<DeleteMessageError, R>) -> Self
Source§impl<R> From<SdkError<DeleteQueueError, R>> for Error
impl<R> From<SdkError<DeleteQueueError, R>> for Error
Source§fn from(err: SdkError<DeleteQueueError, R>) -> Self
fn from(err: SdkError<DeleteQueueError, R>) -> Self
Source§impl<R> From<SdkError<GetQueueAttributesError, R>> for Error
impl<R> From<SdkError<GetQueueAttributesError, R>> for Error
Source§fn from(err: SdkError<GetQueueAttributesError, R>) -> Self
fn from(err: SdkError<GetQueueAttributesError, R>) -> Self
Source§impl<R> From<SdkError<GetQueueUrlError, R>> for Error
impl<R> From<SdkError<GetQueueUrlError, R>> for Error
Source§fn from(err: SdkError<GetQueueUrlError, R>) -> Self
fn from(err: SdkError<GetQueueUrlError, R>) -> Self
Source§impl<R> From<SdkError<ListDeadLetterSourceQueuesError, R>> for Error
impl<R> From<SdkError<ListDeadLetterSourceQueuesError, R>> for Error
Source§fn from(err: SdkError<ListDeadLetterSourceQueuesError, R>) -> Self
fn from(err: SdkError<ListDeadLetterSourceQueuesError, R>) -> Self
Source§impl<R> From<SdkError<ListMessageMoveTasksError, R>> for Error
impl<R> From<SdkError<ListMessageMoveTasksError, R>> for Error
Source§fn from(err: SdkError<ListMessageMoveTasksError, R>) -> Self
fn from(err: SdkError<ListMessageMoveTasksError, R>) -> Self
Source§impl<R> From<SdkError<ListQueueTagsError, R>> for Error
impl<R> From<SdkError<ListQueueTagsError, R>> for Error
Source§fn from(err: SdkError<ListQueueTagsError, R>) -> Self
fn from(err: SdkError<ListQueueTagsError, R>) -> Self
Source§impl<R> From<SdkError<ListQueuesError, R>> for Error
impl<R> From<SdkError<ListQueuesError, R>> for Error
Source§fn from(err: SdkError<ListQueuesError, R>) -> Self
fn from(err: SdkError<ListQueuesError, R>) -> Self
Source§impl<R> From<SdkError<PurgeQueueError, R>> for Error
impl<R> From<SdkError<PurgeQueueError, R>> for Error
Source§fn from(err: SdkError<PurgeQueueError, R>) -> Self
fn from(err: SdkError<PurgeQueueError, R>) -> Self
Source§impl<R> From<SdkError<ReceiveMessageError, R>> for Error
impl<R> From<SdkError<ReceiveMessageError, R>> for Error
Source§fn from(err: SdkError<ReceiveMessageError, R>) -> Self
fn from(err: SdkError<ReceiveMessageError, R>) -> Self
Source§impl<R> From<SdkError<RemovePermissionError, R>> for Error
impl<R> From<SdkError<RemovePermissionError, R>> for Error
Source§fn from(err: SdkError<RemovePermissionError, R>) -> Self
fn from(err: SdkError<RemovePermissionError, R>) -> Self
Source§impl<R> From<SdkError<SendMessageBatchError, R>> for Error
impl<R> From<SdkError<SendMessageBatchError, R>> for Error
Source§fn from(err: SdkError<SendMessageBatchError, R>) -> Self
fn from(err: SdkError<SendMessageBatchError, R>) -> Self
Source§impl<R> From<SdkError<SendMessageError, R>> for Error
impl<R> From<SdkError<SendMessageError, R>> for Error
Source§fn from(err: SdkError<SendMessageError, R>) -> Self
fn from(err: SdkError<SendMessageError, R>) -> Self
Source§impl<R> From<SdkError<SetQueueAttributesError, R>> for Error
impl<R> From<SdkError<SetQueueAttributesError, R>> for Error
Source§fn from(err: SdkError<SetQueueAttributesError, R>) -> Self
fn from(err: SdkError<SetQueueAttributesError, R>) -> Self
Source§impl<R> From<SdkError<StartMessageMoveTaskError, R>> for Error
impl<R> From<SdkError<StartMessageMoveTaskError, R>> for Error
Source§fn from(err: SdkError<StartMessageMoveTaskError, R>) -> Self
fn from(err: SdkError<StartMessageMoveTaskError, R>) -> Self
Source§impl<R> From<SdkError<TagQueueError, R>> for Error
impl<R> From<SdkError<TagQueueError, R>> for Error
Source§fn from(err: SdkError<TagQueueError, R>) -> Self
fn from(err: SdkError<TagQueueError, R>) -> Self
Source§impl<R> From<SdkError<UntagQueueError, R>> for Error
impl<R> From<SdkError<UntagQueueError, R>> for Error
Source§fn from(err: SdkError<UntagQueueError, R>) -> Self
fn from(err: SdkError<UntagQueueError, R>) -> Self
Source§impl From<SendMessageBatchError> for Error
impl From<SendMessageBatchError> for Error
Source§fn from(err: SendMessageBatchError) -> Self
fn from(err: SendMessageBatchError) -> Self
Source§impl From<SendMessageError> for Error
impl From<SendMessageError> for Error
Source§fn from(err: SendMessageError) -> Self
fn from(err: SendMessageError) -> Self
Source§impl From<SetQueueAttributesError> for Error
impl From<SetQueueAttributesError> for Error
Source§fn from(err: SetQueueAttributesError) -> Self
fn from(err: SetQueueAttributesError) -> Self
Source§impl From<StartMessageMoveTaskError> for Error
impl From<StartMessageMoveTaskError> for Error
Source§fn from(err: StartMessageMoveTaskError) -> Self
fn from(err: StartMessageMoveTaskError) -> Self
Source§impl From<TagQueueError> for Error
impl From<TagQueueError> for Error
Source§fn from(err: TagQueueError) -> Self
fn from(err: TagQueueError) -> Self
Source§impl From<UntagQueueError> for Error
impl From<UntagQueueError> for Error
Source§fn from(err: UntagQueueError) -> Self
fn from(err: UntagQueueError) -> Self
Source§impl ProvideErrorMetadata for Error
impl ProvideErrorMetadata for Error
Source§fn meta(&self) -> &ErrorMetadata
fn meta(&self) -> &ErrorMetadata
Auto Trait Implementations§
impl Freeze for Error
impl !RefUnwindSafe for Error
impl Send for Error
impl Sync for Error
impl Unpin for Error
impl !UnwindSafe for Error
Blanket Implementations§
Source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
Source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Source§impl<T> Instrument for T
impl<T> Instrument for T
Source§fn instrument(self, span: Span) -> Instrumented<Self>
fn instrument(self, span: Span) -> Instrumented<Self>
Source§fn in_current_span(self) -> Instrumented<Self>
fn in_current_span(self) -> Instrumented<Self>
Source§impl<T> IntoEither for T
impl<T> IntoEither for T
Source§fn into_either(self, into_left: bool) -> Either<Self, Self>
fn into_either(self, into_left: bool) -> Either<Self, Self>
self
into a Left
variant of Either<Self, Self>
if into_left
is true
.
Converts self
into a Right
variant of Either<Self, Self>
otherwise. Read moreSource§fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
self
into a Left
variant of Either<Self, Self>
if into_left(&self)
returns true
.
Converts self
into a Right
variant of Either<Self, Self>
otherwise. Read moreSource§impl<T> Paint for Twhere
T: ?Sized,
impl<T> Paint for Twhere
T: ?Sized,
Source§fn fg(&self, value: Color) -> Painted<&T>
fn fg(&self, value: Color) -> Painted<&T>
Returns a styled value derived from self
with the foreground set to
value
.
This method should be used rarely. Instead, prefer to use color-specific
builder methods like red()
and
green()
, which have the same functionality but are
pithier.
§Example
Set foreground color to white using fg()
:
use yansi::{Paint, Color};
painted.fg(Color::White);
Set foreground color to white using white()
.
use yansi::Paint;
painted.white();
Source§fn bright_black(&self) -> Painted<&T>
fn bright_black(&self) -> Painted<&T>
Source§fn bright_red(&self) -> Painted<&T>
fn bright_red(&self) -> Painted<&T>
Source§fn bright_green(&self) -> Painted<&T>
fn bright_green(&self) -> Painted<&T>
Source§fn bright_yellow(&self) -> Painted<&T>
fn bright_yellow(&self) -> Painted<&T>
Source§fn bright_blue(&self) -> Painted<&T>
fn bright_blue(&self) -> Painted<&T>
Source§fn bright_magenta(&self) -> Painted<&T>
fn bright_magenta(&self) -> Painted<&T>
Source§fn bright_cyan(&self) -> Painted<&T>
fn bright_cyan(&self) -> Painted<&T>
Source§fn bright_white(&self) -> Painted<&T>
fn bright_white(&self) -> Painted<&T>
Source§fn bg(&self, value: Color) -> Painted<&T>
fn bg(&self, value: Color) -> Painted<&T>
Returns a styled value derived from self
with the background set to
value
.
This method should be used rarely. Instead, prefer to use color-specific
builder methods like on_red()
and
on_green()
, which have the same functionality but
are pithier.
§Example
Set background color to red using fg()
:
use yansi::{Paint, Color};
painted.bg(Color::Red);
Set background color to red using on_red()
.
use yansi::Paint;
painted.on_red();
Source§fn on_primary(&self) -> Painted<&T>
fn on_primary(&self) -> Painted<&T>
Source§fn on_magenta(&self) -> Painted<&T>
fn on_magenta(&self) -> Painted<&T>
Source§fn on_bright_black(&self) -> Painted<&T>
fn on_bright_black(&self) -> Painted<&T>
Source§fn on_bright_red(&self) -> Painted<&T>
fn on_bright_red(&self) -> Painted<&T>
Source§fn on_bright_green(&self) -> Painted<&T>
fn on_bright_green(&self) -> Painted<&T>
Source§fn on_bright_yellow(&self) -> Painted<&T>
fn on_bright_yellow(&self) -> Painted<&T>
Source§fn on_bright_blue(&self) -> Painted<&T>
fn on_bright_blue(&self) -> Painted<&T>
Source§fn on_bright_magenta(&self) -> Painted<&T>
fn on_bright_magenta(&self) -> Painted<&T>
Source§fn on_bright_cyan(&self) -> Painted<&T>
fn on_bright_cyan(&self) -> Painted<&T>
Source§fn on_bright_white(&self) -> Painted<&T>
fn on_bright_white(&self) -> Painted<&T>
Source§fn attr(&self, value: Attribute) -> Painted<&T>
fn attr(&self, value: Attribute) -> Painted<&T>
Enables the styling Attribute
value
.
This method should be used rarely. Instead, prefer to use
attribute-specific builder methods like bold()
and
underline()
, which have the same functionality
but are pithier.
§Example
Make text bold using attr()
:
use yansi::{Paint, Attribute};
painted.attr(Attribute::Bold);
Make text bold using using bold()
.
use yansi::Paint;
painted.bold();
Source§fn rapid_blink(&self) -> Painted<&T>
fn rapid_blink(&self) -> Painted<&T>
Source§fn quirk(&self, value: Quirk) -> Painted<&T>
fn quirk(&self, value: Quirk) -> Painted<&T>
Enables the yansi
Quirk
value
.
This method should be used rarely. Instead, prefer to use quirk-specific
builder methods like mask()
and
wrap()
, which have the same functionality but are
pithier.
§Example
Enable wrapping using .quirk()
:
use yansi::{Paint, Quirk};
painted.quirk(Quirk::Wrap);
Enable wrapping using wrap()
.
use yansi::Paint;
painted.wrap();
Source§fn clear(&self) -> Painted<&T>
👎Deprecated since 1.0.1: renamed to resetting()
due to conflicts with Vec::clear()
.
The clear()
method will be removed in a future release.
fn clear(&self) -> Painted<&T>
resetting()
due to conflicts with Vec::clear()
.
The clear()
method will be removed in a future release.Source§fn whenever(&self, value: Condition) -> Painted<&T>
fn whenever(&self, value: Condition) -> Painted<&T>
Conditionally enable styling based on whether the Condition
value
applies. Replaces any previous condition.
See the crate level docs for more details.
§Example
Enable styling painted
only when both stdout
and stderr
are TTYs:
use yansi::{Paint, Condition};
painted.red().on_yellow().whenever(Condition::STDOUTERR_ARE_TTY);