Enum Error

Source
#[non_exhaustive]
pub enum Error {
Show 34 variants CertificateConflictException(CertificateConflictException), CertificateStateException(CertificateStateException), CertificateValidationException(CertificateValidationException), ConflictException(ConflictException), ConflictingResourceUpdateException(ConflictingResourceUpdateException), DeleteConflictException(DeleteConflictException), IndexNotReadyException(IndexNotReadyException), InternalException(InternalException), InternalFailureException(InternalFailureException), InternalServerException(InternalServerException), InvalidAggregationException(InvalidAggregationException), InvalidQueryException(InvalidQueryException), InvalidRequestException(InvalidRequestException), InvalidResponseException(InvalidResponseException), InvalidStateTransitionException(InvalidStateTransitionException), LimitExceededException(LimitExceededException), MalformedPolicyException(MalformedPolicyException), NotConfiguredException(NotConfiguredException), RegistrationCodeValidationException(RegistrationCodeValidationException), ResourceAlreadyExistsException(ResourceAlreadyExistsException), ResourceNotFoundException(ResourceNotFoundException), ResourceRegistrationFailureException(ResourceRegistrationFailureException), ServiceQuotaExceededException(ServiceQuotaExceededException), ServiceUnavailableException(ServiceUnavailableException), SqlParseException(SqlParseException), TaskAlreadyExistsException(TaskAlreadyExistsException), ThrottlingException(ThrottlingException), TransferAlreadyCompletedException(TransferAlreadyCompletedException), TransferConflictException(TransferConflictException), UnauthorizedException(UnauthorizedException), ValidationException(ValidationException), VersionConflictException(VersionConflictException), VersionsLimitExceededException(VersionsLimitExceededException), Unhandled(Unhandled),
}
Expand description

All possible error types for this service.

Variants (Non-exhaustive)§

This enum is marked as non-exhaustive
Non-exhaustive enums could have additional variants added in future. Therefore, when matching against variants of non-exhaustive enums, an extra wildcard arm must be added to account for any future variants.
§

CertificateConflictException(CertificateConflictException)

Unable to verify the CA certificate used to sign the device certificate you are attempting to register. This is happens when you have registered more than one CA certificate that has the same subject field and public key.

§

CertificateStateException(CertificateStateException)

The certificate operation is not allowed.

§

CertificateValidationException(CertificateValidationException)

The certificate is invalid.

§

ConflictException(ConflictException)

The request conflicts with the current state of the resource.

§

ConflictingResourceUpdateException(ConflictingResourceUpdateException)

A conflicting resource update exception. This exception is thrown when two pending updates cause a conflict.

§

DeleteConflictException(DeleteConflictException)

You can't delete the resource because it is attached to one or more resources.

§

IndexNotReadyException(IndexNotReadyException)

The index is not ready.

§

InternalException(InternalException)

An unexpected error has occurred.

§

InternalFailureException(InternalFailureException)

An unexpected error has occurred.

§

InternalServerException(InternalServerException)

Internal error from the service that indicates an unexpected error or that the service is unavailable.

§

InvalidAggregationException(InvalidAggregationException)

The aggregation is invalid.

§

InvalidQueryException(InvalidQueryException)

The query is invalid.

§

InvalidRequestException(InvalidRequestException)

The request is not valid.

§

InvalidResponseException(InvalidResponseException)

The response is invalid.

§

InvalidStateTransitionException(InvalidStateTransitionException)

An attempt was made to change to an invalid state, for example by deleting a job or a job execution which is "IN_PROGRESS" without setting the force parameter.

§

LimitExceededException(LimitExceededException)

A limit has been exceeded.

§

MalformedPolicyException(MalformedPolicyException)

The policy documentation is not valid.

§

NotConfiguredException(NotConfiguredException)

The resource is not configured.

§

RegistrationCodeValidationException(RegistrationCodeValidationException)

The registration code is invalid.

§

ResourceAlreadyExistsException(ResourceAlreadyExistsException)

The resource already exists.

§

ResourceNotFoundException(ResourceNotFoundException)

The specified resource does not exist.

§

ResourceRegistrationFailureException(ResourceRegistrationFailureException)

The resource registration failed.

§

ServiceQuotaExceededException(ServiceQuotaExceededException)

Service quota has been exceeded.

§

ServiceUnavailableException(ServiceUnavailableException)

The service is temporarily unavailable.

§

SqlParseException(SqlParseException)

The Rule-SQL expression can't be parsed correctly.

§

TaskAlreadyExistsException(TaskAlreadyExistsException)

This exception occurs if you attempt to start a task with the same task-id as an existing task but with a different clientRequestToken.

§

ThrottlingException(ThrottlingException)

The rate exceeds the limit.

§

TransferAlreadyCompletedException(TransferAlreadyCompletedException)

You can't revert the certificate transfer because the transfer is already complete.

§

TransferConflictException(TransferConflictException)

You can't transfer the certificate because authorization policies are still attached.

§

UnauthorizedException(UnauthorizedException)

You are not authorized to perform this operation.

§

ValidationException(ValidationException)

The request is not valid.

§

VersionConflictException(VersionConflictException)

An exception thrown when the version of an entity specified with the expectedVersion parameter does not match the latest version in the system.

§

VersionsLimitExceededException(VersionsLimitExceededException)

The number of policy versions exceeds the limit.

§

Unhandled(Unhandled)

👎Deprecated: Matching 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 Debug for Error

Source§

fn fmt(&self, f: &mut Formatter<'_>) -> Result

Formats the value using the given formatter. Read more
Source§

impl Display for Error

Source§

fn fmt(&self, f: &mut Formatter<'_>) -> Result

Formats the value using the given formatter. Read more
Source§

impl Error for Error

Source§

fn source(&self) -> Option<&(dyn Error + 'static)>

Returns the lower-level source of this error, if any. Read more
1.0.0 · Source§

fn description(&self) -> &str

👎Deprecated since 1.42.0: use the Display impl or to_string()
1.0.0 · Source§

fn cause(&self) -> Option<&dyn Error>

👎Deprecated since 1.33.0: replaced by Error::source, which can support downcasting
Source§

fn provide<'a>(&'a self, request: &mut Request<'a>)

🔬This is a nightly-only experimental API. (error_generic_member_access)
Provides type-based access to context intended for error reports. Read more
Source§

impl From<AcceptCertificateTransferError> for Error

Source§

fn from(err: AcceptCertificateTransferError) -> Self

Converts to this type from the input type.
Source§

impl From<AddThingToBillingGroupError> for Error

Source§

fn from(err: AddThingToBillingGroupError) -> Self

Converts to this type from the input type.
Source§

impl From<AddThingToThingGroupError> for Error

Source§

fn from(err: AddThingToThingGroupError) -> Self

Converts to this type from the input type.
Source§

impl From<AssociateSbomWithPackageVersionError> for Error

Source§

fn from(err: AssociateSbomWithPackageVersionError) -> Self

Converts to this type from the input type.
Source§

impl From<AssociateTargetsWithJobError> for Error

Source§

fn from(err: AssociateTargetsWithJobError) -> Self

Converts to this type from the input type.
Source§

impl From<AttachPolicyError> for Error

Source§

fn from(err: AttachPolicyError) -> Self

Converts to this type from the input type.
Source§

impl From<AttachPrincipalPolicyError> for Error

Source§

fn from(err: AttachPrincipalPolicyError) -> Self

Converts to this type from the input type.
Source§

impl From<AttachSecurityProfileError> for Error

Source§

fn from(err: AttachSecurityProfileError) -> Self

Converts to this type from the input type.
Source§

impl From<AttachThingPrincipalError> for Error

Source§

fn from(err: AttachThingPrincipalError) -> Self

Converts to this type from the input type.
Source§

impl From<BuildError> for Error

Source§

fn from(value: BuildError) -> Self

Converts to this type from the input type.
Source§

impl From<CancelAuditMitigationActionsTaskError> for Error

Source§

fn from(err: CancelAuditMitigationActionsTaskError) -> Self

Converts to this type from the input type.
Source§

impl From<CancelAuditTaskError> for Error

Source§

fn from(err: CancelAuditTaskError) -> Self

Converts to this type from the input type.
Source§

impl From<CancelCertificateTransferError> for Error

Source§

fn from(err: CancelCertificateTransferError) -> Self

Converts to this type from the input type.
Source§

impl From<CancelDetectMitigationActionsTaskError> for Error

Source§

fn from(err: CancelDetectMitigationActionsTaskError) -> Self

Converts to this type from the input type.
Source§

impl From<CancelJobError> for Error

Source§

fn from(err: CancelJobError) -> Self

Converts to this type from the input type.
Source§

impl From<CancelJobExecutionError> for Error

Source§

fn from(err: CancelJobExecutionError) -> Self

Converts to this type from the input type.
Source§

impl From<ClearDefaultAuthorizerError> for Error

Source§

fn from(err: ClearDefaultAuthorizerError) -> Self

Converts to this type from the input type.
Source§

impl From<ConfirmTopicRuleDestinationError> for Error

Source§

fn from(err: ConfirmTopicRuleDestinationError) -> Self

Converts to this type from the input type.
Source§

impl From<CreateAuditSuppressionError> for Error

Source§

fn from(err: CreateAuditSuppressionError) -> Self

Converts to this type from the input type.
Source§

impl From<CreateAuthorizerError> for Error

Source§

fn from(err: CreateAuthorizerError) -> Self

Converts to this type from the input type.
Source§

impl From<CreateBillingGroupError> for Error

Source§

fn from(err: CreateBillingGroupError) -> Self

Converts to this type from the input type.
Source§

impl From<CreateCertificateFromCsrError> for Error

Source§

fn from(err: CreateCertificateFromCsrError) -> Self

Converts to this type from the input type.
Source§

impl From<CreateCertificateProviderError> for Error

Source§

fn from(err: CreateCertificateProviderError) -> Self

Converts to this type from the input type.
Source§

impl From<CreateCommandError> for Error

Source§

fn from(err: CreateCommandError) -> Self

Converts to this type from the input type.
Source§

impl From<CreateCustomMetricError> for Error

Source§

fn from(err: CreateCustomMetricError) -> Self

Converts to this type from the input type.
Source§

impl From<CreateDimensionError> for Error

Source§

fn from(err: CreateDimensionError) -> Self

Converts to this type from the input type.
Source§

impl From<CreateDomainConfigurationError> for Error

Source§

fn from(err: CreateDomainConfigurationError) -> Self

Converts to this type from the input type.
Source§

impl From<CreateDynamicThingGroupError> for Error

Source§

fn from(err: CreateDynamicThingGroupError) -> Self

Converts to this type from the input type.
Source§

impl From<CreateFleetMetricError> for Error

Source§

fn from(err: CreateFleetMetricError) -> Self

Converts to this type from the input type.
Source§

impl From<CreateJobError> for Error

Source§

fn from(err: CreateJobError) -> Self

Converts to this type from the input type.
Source§

impl From<CreateJobTemplateError> for Error

Source§

fn from(err: CreateJobTemplateError) -> Self

Converts to this type from the input type.
Source§

impl From<CreateKeysAndCertificateError> for Error

Source§

fn from(err: CreateKeysAndCertificateError) -> Self

Converts to this type from the input type.
Source§

impl From<CreateMitigationActionError> for Error

Source§

fn from(err: CreateMitigationActionError) -> Self

Converts to this type from the input type.
Source§

impl From<CreateOTAUpdateError> for Error

Source§

fn from(err: CreateOTAUpdateError) -> Self

Converts to this type from the input type.
Source§

impl From<CreatePackageError> for Error

Source§

fn from(err: CreatePackageError) -> Self

Converts to this type from the input type.
Source§

impl From<CreatePackageVersionError> for Error

Source§

fn from(err: CreatePackageVersionError) -> Self

Converts to this type from the input type.
Source§

impl From<CreatePolicyError> for Error

Source§

fn from(err: CreatePolicyError) -> Self

Converts to this type from the input type.
Source§

impl From<CreatePolicyVersionError> for Error

Source§

fn from(err: CreatePolicyVersionError) -> Self

Converts to this type from the input type.
Source§

impl From<CreateProvisioningClaimError> for Error

Source§

fn from(err: CreateProvisioningClaimError) -> Self

Converts to this type from the input type.
Source§

impl From<CreateProvisioningTemplateError> for Error

Source§

fn from(err: CreateProvisioningTemplateError) -> Self

Converts to this type from the input type.
Source§

impl From<CreateProvisioningTemplateVersionError> for Error

Source§

fn from(err: CreateProvisioningTemplateVersionError) -> Self

Converts to this type from the input type.
Source§

impl From<CreateRoleAliasError> for Error

Source§

fn from(err: CreateRoleAliasError) -> Self

Converts to this type from the input type.
Source§

impl From<CreateScheduledAuditError> for Error

Source§

fn from(err: CreateScheduledAuditError) -> Self

Converts to this type from the input type.
Source§

impl From<CreateSecurityProfileError> for Error

Source§

fn from(err: CreateSecurityProfileError) -> Self

Converts to this type from the input type.
Source§

impl From<CreateStreamError> for Error

Source§

fn from(err: CreateStreamError) -> Self

Converts to this type from the input type.
Source§

impl From<CreateThingError> for Error

Source§

fn from(err: CreateThingError) -> Self

Converts to this type from the input type.
Source§

impl From<CreateThingGroupError> for Error

Source§

fn from(err: CreateThingGroupError) -> Self

Converts to this type from the input type.
Source§

impl From<CreateThingTypeError> for Error

Source§

fn from(err: CreateThingTypeError) -> Self

Converts to this type from the input type.
Source§

impl From<CreateTopicRuleDestinationError> for Error

Source§

fn from(err: CreateTopicRuleDestinationError) -> Self

Converts to this type from the input type.
Source§

impl From<CreateTopicRuleError> for Error

Source§

fn from(err: CreateTopicRuleError) -> Self

Converts to this type from the input type.
Source§

impl From<DeleteAccountAuditConfigurationError> for Error

Source§

fn from(err: DeleteAccountAuditConfigurationError) -> Self

Converts to this type from the input type.
Source§

impl From<DeleteAuditSuppressionError> for Error

Source§

fn from(err: DeleteAuditSuppressionError) -> Self

Converts to this type from the input type.
Source§

impl From<DeleteAuthorizerError> for Error

Source§

fn from(err: DeleteAuthorizerError) -> Self

Converts to this type from the input type.
Source§

impl From<DeleteBillingGroupError> for Error

Source§

fn from(err: DeleteBillingGroupError) -> Self

Converts to this type from the input type.
Source§

impl From<DeleteCACertificateError> for Error

Source§

fn from(err: DeleteCACertificateError) -> Self

Converts to this type from the input type.
Source§

impl From<DeleteCertificateError> for Error

Source§

fn from(err: DeleteCertificateError) -> Self

Converts to this type from the input type.
Source§

impl From<DeleteCertificateProviderError> for Error

Source§

fn from(err: DeleteCertificateProviderError) -> Self

Converts to this type from the input type.
Source§

impl From<DeleteCommandError> for Error

Source§

fn from(err: DeleteCommandError) -> Self

Converts to this type from the input type.
Source§

impl From<DeleteCommandExecutionError> for Error

Source§

fn from(err: DeleteCommandExecutionError) -> Self

Converts to this type from the input type.
Source§

impl From<DeleteCustomMetricError> for Error

Source§

fn from(err: DeleteCustomMetricError) -> Self

Converts to this type from the input type.
Source§

impl From<DeleteDimensionError> for Error

Source§

fn from(err: DeleteDimensionError) -> Self

Converts to this type from the input type.
Source§

impl From<DeleteDomainConfigurationError> for Error

Source§

fn from(err: DeleteDomainConfigurationError) -> Self

Converts to this type from the input type.
Source§

impl From<DeleteDynamicThingGroupError> for Error

Source§

fn from(err: DeleteDynamicThingGroupError) -> Self

Converts to this type from the input type.
Source§

impl From<DeleteFleetMetricError> for Error

Source§

fn from(err: DeleteFleetMetricError) -> Self

Converts to this type from the input type.
Source§

impl From<DeleteJobError> for Error

Source§

fn from(err: DeleteJobError) -> Self

Converts to this type from the input type.
Source§

impl From<DeleteJobExecutionError> for Error

Source§

fn from(err: DeleteJobExecutionError) -> Self

Converts to this type from the input type.
Source§

impl From<DeleteJobTemplateError> for Error

Source§

fn from(err: DeleteJobTemplateError) -> Self

Converts to this type from the input type.
Source§

impl From<DeleteMitigationActionError> for Error

Source§

fn from(err: DeleteMitigationActionError) -> Self

Converts to this type from the input type.
Source§

impl From<DeleteOTAUpdateError> for Error

Source§

fn from(err: DeleteOTAUpdateError) -> Self

Converts to this type from the input type.
Source§

impl From<DeletePackageError> for Error

Source§

fn from(err: DeletePackageError) -> Self

Converts to this type from the input type.
Source§

impl From<DeletePackageVersionError> for Error

Source§

fn from(err: DeletePackageVersionError) -> Self

Converts to this type from the input type.
Source§

impl From<DeletePolicyError> for Error

Source§

fn from(err: DeletePolicyError) -> Self

Converts to this type from the input type.
Source§

impl From<DeletePolicyVersionError> for Error

Source§

fn from(err: DeletePolicyVersionError) -> Self

Converts to this type from the input type.
Source§

impl From<DeleteProvisioningTemplateError> for Error

Source§

fn from(err: DeleteProvisioningTemplateError) -> Self

Converts to this type from the input type.
Source§

impl From<DeleteProvisioningTemplateVersionError> for Error

Source§

fn from(err: DeleteProvisioningTemplateVersionError) -> Self

Converts to this type from the input type.
Source§

impl From<DeleteRegistrationCodeError> for Error

Source§

fn from(err: DeleteRegistrationCodeError) -> Self

Converts to this type from the input type.
Source§

impl From<DeleteRoleAliasError> for Error

Source§

fn from(err: DeleteRoleAliasError) -> Self

Converts to this type from the input type.
Source§

impl From<DeleteScheduledAuditError> for Error

Source§

fn from(err: DeleteScheduledAuditError) -> Self

Converts to this type from the input type.
Source§

impl From<DeleteSecurityProfileError> for Error

Source§

fn from(err: DeleteSecurityProfileError) -> Self

Converts to this type from the input type.
Source§

impl From<DeleteStreamError> for Error

Source§

fn from(err: DeleteStreamError) -> Self

Converts to this type from the input type.
Source§

impl From<DeleteThingError> for Error

Source§

fn from(err: DeleteThingError) -> Self

Converts to this type from the input type.
Source§

impl From<DeleteThingGroupError> for Error

Source§

fn from(err: DeleteThingGroupError) -> Self

Converts to this type from the input type.
Source§

impl From<DeleteThingTypeError> for Error

Source§

fn from(err: DeleteThingTypeError) -> Self

Converts to this type from the input type.
Source§

impl From<DeleteTopicRuleDestinationError> for Error

Source§

fn from(err: DeleteTopicRuleDestinationError) -> Self

Converts to this type from the input type.
Source§

impl From<DeleteTopicRuleError> for Error

Source§

fn from(err: DeleteTopicRuleError) -> Self

Converts to this type from the input type.
Source§

impl From<DeleteV2LoggingLevelError> for Error

Source§

fn from(err: DeleteV2LoggingLevelError) -> Self

Converts to this type from the input type.
Source§

impl From<DeprecateThingTypeError> for Error

Source§

fn from(err: DeprecateThingTypeError) -> Self

Converts to this type from the input type.
Source§

impl From<DescribeAccountAuditConfigurationError> for Error

Source§

fn from(err: DescribeAccountAuditConfigurationError) -> Self

Converts to this type from the input type.
Source§

impl From<DescribeAuditFindingError> for Error

Source§

fn from(err: DescribeAuditFindingError) -> Self

Converts to this type from the input type.
Source§

impl From<DescribeAuditMitigationActionsTaskError> for Error

Source§

fn from(err: DescribeAuditMitigationActionsTaskError) -> Self

Converts to this type from the input type.
Source§

impl From<DescribeAuditSuppressionError> for Error

Source§

fn from(err: DescribeAuditSuppressionError) -> Self

Converts to this type from the input type.
Source§

impl From<DescribeAuditTaskError> for Error

Source§

fn from(err: DescribeAuditTaskError) -> Self

Converts to this type from the input type.
Source§

impl From<DescribeAuthorizerError> for Error

Source§

fn from(err: DescribeAuthorizerError) -> Self

Converts to this type from the input type.
Source§

impl From<DescribeBillingGroupError> for Error

Source§

fn from(err: DescribeBillingGroupError) -> Self

Converts to this type from the input type.
Source§

impl From<DescribeCACertificateError> for Error

Source§

fn from(err: DescribeCACertificateError) -> Self

Converts to this type from the input type.
Source§

impl From<DescribeCertificateError> for Error

Source§

fn from(err: DescribeCertificateError) -> Self

Converts to this type from the input type.
Source§

impl From<DescribeCertificateProviderError> for Error

Source§

fn from(err: DescribeCertificateProviderError) -> Self

Converts to this type from the input type.
Source§

impl From<DescribeCustomMetricError> for Error

Source§

fn from(err: DescribeCustomMetricError) -> Self

Converts to this type from the input type.
Source§

impl From<DescribeDefaultAuthorizerError> for Error

Source§

fn from(err: DescribeDefaultAuthorizerError) -> Self

Converts to this type from the input type.
Source§

impl From<DescribeDetectMitigationActionsTaskError> for Error

Source§

fn from(err: DescribeDetectMitigationActionsTaskError) -> Self

Converts to this type from the input type.
Source§

impl From<DescribeDimensionError> for Error

Source§

fn from(err: DescribeDimensionError) -> Self

Converts to this type from the input type.
Source§

impl From<DescribeDomainConfigurationError> for Error

Source§

fn from(err: DescribeDomainConfigurationError) -> Self

Converts to this type from the input type.
Source§

impl From<DescribeEndpointError> for Error

Source§

fn from(err: DescribeEndpointError) -> Self

Converts to this type from the input type.
Source§

impl From<DescribeEventConfigurationsError> for Error

Source§

fn from(err: DescribeEventConfigurationsError) -> Self

Converts to this type from the input type.
Source§

impl From<DescribeFleetMetricError> for Error

Source§

fn from(err: DescribeFleetMetricError) -> Self

Converts to this type from the input type.
Source§

impl From<DescribeIndexError> for Error

Source§

fn from(err: DescribeIndexError) -> Self

Converts to this type from the input type.
Source§

impl From<DescribeJobError> for Error

Source§

fn from(err: DescribeJobError) -> Self

Converts to this type from the input type.
Source§

impl From<DescribeJobExecutionError> for Error

Source§

fn from(err: DescribeJobExecutionError) -> Self

Converts to this type from the input type.
Source§

impl From<DescribeJobTemplateError> for Error

Source§

fn from(err: DescribeJobTemplateError) -> Self

Converts to this type from the input type.
Source§

impl From<DescribeManagedJobTemplateError> for Error

Source§

fn from(err: DescribeManagedJobTemplateError) -> Self

Converts to this type from the input type.
Source§

impl From<DescribeMitigationActionError> for Error

Source§

fn from(err: DescribeMitigationActionError) -> Self

Converts to this type from the input type.
Source§

impl From<DescribeProvisioningTemplateError> for Error

Source§

fn from(err: DescribeProvisioningTemplateError) -> Self

Converts to this type from the input type.
Source§

impl From<DescribeProvisioningTemplateVersionError> for Error

Source§

fn from(err: DescribeProvisioningTemplateVersionError) -> Self

Converts to this type from the input type.
Source§

impl From<DescribeRoleAliasError> for Error

Source§

fn from(err: DescribeRoleAliasError) -> Self

Converts to this type from the input type.
Source§

impl From<DescribeScheduledAuditError> for Error

Source§

fn from(err: DescribeScheduledAuditError) -> Self

Converts to this type from the input type.
Source§

impl From<DescribeSecurityProfileError> for Error

Source§

fn from(err: DescribeSecurityProfileError) -> Self

Converts to this type from the input type.
Source§

impl From<DescribeStreamError> for Error

Source§

fn from(err: DescribeStreamError) -> Self

Converts to this type from the input type.
Source§

impl From<DescribeThingError> for Error

Source§

fn from(err: DescribeThingError) -> Self

Converts to this type from the input type.
Source§

impl From<DescribeThingGroupError> for Error

Source§

fn from(err: DescribeThingGroupError) -> Self

Converts to this type from the input type.
Source§

impl From<DescribeThingRegistrationTaskError> for Error

Source§

fn from(err: DescribeThingRegistrationTaskError) -> Self

Converts to this type from the input type.
Source§

impl From<DescribeThingTypeError> for Error

Source§

fn from(err: DescribeThingTypeError) -> Self

Converts to this type from the input type.
Source§

impl From<DetachPolicyError> for Error

Source§

fn from(err: DetachPolicyError) -> Self

Converts to this type from the input type.
Source§

impl From<DetachPrincipalPolicyError> for Error

Source§

fn from(err: DetachPrincipalPolicyError) -> Self

Converts to this type from the input type.
Source§

impl From<DetachSecurityProfileError> for Error

Source§

fn from(err: DetachSecurityProfileError) -> Self

Converts to this type from the input type.
Source§

impl From<DetachThingPrincipalError> for Error

Source§

fn from(err: DetachThingPrincipalError) -> Self

Converts to this type from the input type.
Source§

impl From<DisableTopicRuleError> for Error

Source§

fn from(err: DisableTopicRuleError) -> Self

Converts to this type from the input type.
Source§

impl From<DisassociateSbomFromPackageVersionError> for Error

Source§

fn from(err: DisassociateSbomFromPackageVersionError) -> Self

Converts to this type from the input type.
Source§

impl From<EnableTopicRuleError> for Error

Source§

fn from(err: EnableTopicRuleError) -> Self

Converts to this type from the input type.
Source§

impl From<GetBehaviorModelTrainingSummariesError> for Error

Source§

fn from(err: GetBehaviorModelTrainingSummariesError) -> Self

Converts to this type from the input type.
Source§

impl From<GetBucketsAggregationError> for Error

Source§

fn from(err: GetBucketsAggregationError) -> Self

Converts to this type from the input type.
Source§

impl From<GetCardinalityError> for Error

Source§

fn from(err: GetCardinalityError) -> Self

Converts to this type from the input type.
Source§

impl From<GetCommandError> for Error

Source§

fn from(err: GetCommandError) -> Self

Converts to this type from the input type.
Source§

impl From<GetCommandExecutionError> for Error

Source§

fn from(err: GetCommandExecutionError) -> Self

Converts to this type from the input type.
Source§

impl From<GetEffectivePoliciesError> for Error

Source§

fn from(err: GetEffectivePoliciesError) -> Self

Converts to this type from the input type.
Source§

impl From<GetIndexingConfigurationError> for Error

Source§

fn from(err: GetIndexingConfigurationError) -> Self

Converts to this type from the input type.
Source§

impl From<GetJobDocumentError> for Error

Source§

fn from(err: GetJobDocumentError) -> Self

Converts to this type from the input type.
Source§

impl From<GetLoggingOptionsError> for Error

Source§

fn from(err: GetLoggingOptionsError) -> Self

Converts to this type from the input type.
Source§

impl From<GetOTAUpdateError> for Error

Source§

fn from(err: GetOTAUpdateError) -> Self

Converts to this type from the input type.
Source§

impl From<GetPackageConfigurationError> for Error

Source§

fn from(err: GetPackageConfigurationError) -> Self

Converts to this type from the input type.
Source§

impl From<GetPackageError> for Error

Source§

fn from(err: GetPackageError) -> Self

Converts to this type from the input type.
Source§

impl From<GetPackageVersionError> for Error

Source§

fn from(err: GetPackageVersionError) -> Self

Converts to this type from the input type.
Source§

impl From<GetPercentilesError> for Error

Source§

fn from(err: GetPercentilesError) -> Self

Converts to this type from the input type.
Source§

impl From<GetPolicyError> for Error

Source§

fn from(err: GetPolicyError) -> Self

Converts to this type from the input type.
Source§

impl From<GetPolicyVersionError> for Error

Source§

fn from(err: GetPolicyVersionError) -> Self

Converts to this type from the input type.
Source§

impl From<GetRegistrationCodeError> for Error

Source§

fn from(err: GetRegistrationCodeError) -> Self

Converts to this type from the input type.
Source§

impl From<GetStatisticsError> for Error

Source§

fn from(err: GetStatisticsError) -> Self

Converts to this type from the input type.
Source§

impl From<GetThingConnectivityDataError> for Error

Source§

fn from(err: GetThingConnectivityDataError) -> Self

Converts to this type from the input type.
Source§

impl From<GetTopicRuleDestinationError> for Error

Source§

fn from(err: GetTopicRuleDestinationError) -> Self

Converts to this type from the input type.
Source§

impl From<GetTopicRuleError> for Error

Source§

fn from(err: GetTopicRuleError) -> Self

Converts to this type from the input type.
Source§

impl From<GetV2LoggingOptionsError> for Error

Source§

fn from(err: GetV2LoggingOptionsError) -> Self

Converts to this type from the input type.
Source§

impl From<ListActiveViolationsError> for Error

Source§

fn from(err: ListActiveViolationsError) -> Self

Converts to this type from the input type.
Source§

impl From<ListAttachedPoliciesError> for Error

Source§

fn from(err: ListAttachedPoliciesError) -> Self

Converts to this type from the input type.
Source§

impl From<ListAuditFindingsError> for Error

Source§

fn from(err: ListAuditFindingsError) -> Self

Converts to this type from the input type.
Source§

impl From<ListAuditMitigationActionsExecutionsError> for Error

Source§

fn from(err: ListAuditMitigationActionsExecutionsError) -> Self

Converts to this type from the input type.
Source§

impl From<ListAuditMitigationActionsTasksError> for Error

Source§

fn from(err: ListAuditMitigationActionsTasksError) -> Self

Converts to this type from the input type.
Source§

impl From<ListAuditSuppressionsError> for Error

Source§

fn from(err: ListAuditSuppressionsError) -> Self

Converts to this type from the input type.
Source§

impl From<ListAuditTasksError> for Error

Source§

fn from(err: ListAuditTasksError) -> Self

Converts to this type from the input type.
Source§

impl From<ListAuthorizersError> for Error

Source§

fn from(err: ListAuthorizersError) -> Self

Converts to this type from the input type.
Source§

impl From<ListBillingGroupsError> for Error

Source§

fn from(err: ListBillingGroupsError) -> Self

Converts to this type from the input type.
Source§

impl From<ListCACertificatesError> for Error

Source§

fn from(err: ListCACertificatesError) -> Self

Converts to this type from the input type.
Source§

impl From<ListCertificateProvidersError> for Error

Source§

fn from(err: ListCertificateProvidersError) -> Self

Converts to this type from the input type.
Source§

impl From<ListCertificatesByCAError> for Error

Source§

fn from(err: ListCertificatesByCAError) -> Self

Converts to this type from the input type.
Source§

impl From<ListCertificatesError> for Error

Source§

fn from(err: ListCertificatesError) -> Self

Converts to this type from the input type.
Source§

impl From<ListCommandExecutionsError> for Error

Source§

fn from(err: ListCommandExecutionsError) -> Self

Converts to this type from the input type.
Source§

impl From<ListCommandsError> for Error

Source§

fn from(err: ListCommandsError) -> Self

Converts to this type from the input type.
Source§

impl From<ListCustomMetricsError> for Error

Source§

fn from(err: ListCustomMetricsError) -> Self

Converts to this type from the input type.
Source§

impl From<ListDetectMitigationActionsExecutionsError> for Error

Source§

fn from(err: ListDetectMitigationActionsExecutionsError) -> Self

Converts to this type from the input type.
Source§

impl From<ListDetectMitigationActionsTasksError> for Error

Source§

fn from(err: ListDetectMitigationActionsTasksError) -> Self

Converts to this type from the input type.
Source§

impl From<ListDimensionsError> for Error

Source§

fn from(err: ListDimensionsError) -> Self

Converts to this type from the input type.
Source§

impl From<ListDomainConfigurationsError> for Error

Source§

fn from(err: ListDomainConfigurationsError) -> Self

Converts to this type from the input type.
Source§

impl From<ListFleetMetricsError> for Error

Source§

fn from(err: ListFleetMetricsError) -> Self

Converts to this type from the input type.
Source§

impl From<ListIndicesError> for Error

Source§

fn from(err: ListIndicesError) -> Self

Converts to this type from the input type.
Source§

impl From<ListJobExecutionsForJobError> for Error

Source§

fn from(err: ListJobExecutionsForJobError) -> Self

Converts to this type from the input type.
Source§

impl From<ListJobExecutionsForThingError> for Error

Source§

fn from(err: ListJobExecutionsForThingError) -> Self

Converts to this type from the input type.
Source§

impl From<ListJobTemplatesError> for Error

Source§

fn from(err: ListJobTemplatesError) -> Self

Converts to this type from the input type.
Source§

impl From<ListJobsError> for Error

Source§

fn from(err: ListJobsError) -> Self

Converts to this type from the input type.
Source§

impl From<ListManagedJobTemplatesError> for Error

Source§

fn from(err: ListManagedJobTemplatesError) -> Self

Converts to this type from the input type.
Source§

impl From<ListMetricValuesError> for Error

Source§

fn from(err: ListMetricValuesError) -> Self

Converts to this type from the input type.
Source§

impl From<ListMitigationActionsError> for Error

Source§

fn from(err: ListMitigationActionsError) -> Self

Converts to this type from the input type.
Source§

impl From<ListOTAUpdatesError> for Error

Source§

fn from(err: ListOTAUpdatesError) -> Self

Converts to this type from the input type.
Source§

impl From<ListOutgoingCertificatesError> for Error

Source§

fn from(err: ListOutgoingCertificatesError) -> Self

Converts to this type from the input type.
Source§

impl From<ListPackageVersionsError> for Error

Source§

fn from(err: ListPackageVersionsError) -> Self

Converts to this type from the input type.
Source§

impl From<ListPackagesError> for Error

Source§

fn from(err: ListPackagesError) -> Self

Converts to this type from the input type.
Source§

impl From<ListPoliciesError> for Error

Source§

fn from(err: ListPoliciesError) -> Self

Converts to this type from the input type.
Source§

impl From<ListPolicyPrincipalsError> for Error

Source§

fn from(err: ListPolicyPrincipalsError) -> Self

Converts to this type from the input type.
Source§

impl From<ListPolicyVersionsError> for Error

Source§

fn from(err: ListPolicyVersionsError) -> Self

Converts to this type from the input type.
Source§

impl From<ListPrincipalPoliciesError> for Error

Source§

fn from(err: ListPrincipalPoliciesError) -> Self

Converts to this type from the input type.
Source§

impl From<ListPrincipalThingsError> for Error

Source§

fn from(err: ListPrincipalThingsError) -> Self

Converts to this type from the input type.
Source§

impl From<ListPrincipalThingsV2Error> for Error

Source§

fn from(err: ListPrincipalThingsV2Error) -> Self

Converts to this type from the input type.
Source§

impl From<ListProvisioningTemplateVersionsError> for Error

Source§

fn from(err: ListProvisioningTemplateVersionsError) -> Self

Converts to this type from the input type.
Source§

impl From<ListProvisioningTemplatesError> for Error

Source§

fn from(err: ListProvisioningTemplatesError) -> Self

Converts to this type from the input type.
Source§

impl From<ListRelatedResourcesForAuditFindingError> for Error

Source§

fn from(err: ListRelatedResourcesForAuditFindingError) -> Self

Converts to this type from the input type.
Source§

impl From<ListRoleAliasesError> for Error

Source§

fn from(err: ListRoleAliasesError) -> Self

Converts to this type from the input type.
Source§

impl From<ListSbomValidationResultsError> for Error

Source§

fn from(err: ListSbomValidationResultsError) -> Self

Converts to this type from the input type.
Source§

impl From<ListScheduledAuditsError> for Error

Source§

fn from(err: ListScheduledAuditsError) -> Self

Converts to this type from the input type.
Source§

impl From<ListSecurityProfilesError> for Error

Source§

fn from(err: ListSecurityProfilesError) -> Self

Converts to this type from the input type.
Source§

impl From<ListSecurityProfilesForTargetError> for Error

Source§

fn from(err: ListSecurityProfilesForTargetError) -> Self

Converts to this type from the input type.
Source§

impl From<ListStreamsError> for Error

Source§

fn from(err: ListStreamsError) -> Self

Converts to this type from the input type.
Source§

impl From<ListTagsForResourceError> for Error

Source§

fn from(err: ListTagsForResourceError) -> Self

Converts to this type from the input type.
Source§

impl From<ListTargetsForPolicyError> for Error

Source§

fn from(err: ListTargetsForPolicyError) -> Self

Converts to this type from the input type.
Source§

impl From<ListTargetsForSecurityProfileError> for Error

Source§

fn from(err: ListTargetsForSecurityProfileError) -> Self

Converts to this type from the input type.
Source§

impl From<ListThingGroupsError> for Error

Source§

fn from(err: ListThingGroupsError) -> Self

Converts to this type from the input type.
Source§

impl From<ListThingGroupsForThingError> for Error

Source§

fn from(err: ListThingGroupsForThingError) -> Self

Converts to this type from the input type.
Source§

impl From<ListThingPrincipalsError> for Error

Source§

fn from(err: ListThingPrincipalsError) -> Self

Converts to this type from the input type.
Source§

impl From<ListThingPrincipalsV2Error> for Error

Source§

fn from(err: ListThingPrincipalsV2Error) -> Self

Converts to this type from the input type.
Source§

impl From<ListThingRegistrationTaskReportsError> for Error

Source§

fn from(err: ListThingRegistrationTaskReportsError) -> Self

Converts to this type from the input type.
Source§

impl From<ListThingRegistrationTasksError> for Error

Source§

fn from(err: ListThingRegistrationTasksError) -> Self

Converts to this type from the input type.
Source§

impl From<ListThingTypesError> for Error

Source§

fn from(err: ListThingTypesError) -> Self

Converts to this type from the input type.
Source§

impl From<ListThingsError> for Error

Source§

fn from(err: ListThingsError) -> Self

Converts to this type from the input type.
Source§

impl From<ListThingsInBillingGroupError> for Error

Source§

fn from(err: ListThingsInBillingGroupError) -> Self

Converts to this type from the input type.
Source§

impl From<ListThingsInThingGroupError> for Error

Source§

fn from(err: ListThingsInThingGroupError) -> Self

Converts to this type from the input type.
Source§

impl From<ListTopicRuleDestinationsError> for Error

Source§

fn from(err: ListTopicRuleDestinationsError) -> Self

Converts to this type from the input type.
Source§

impl From<ListTopicRulesError> for Error

Source§

fn from(err: ListTopicRulesError) -> Self

Converts to this type from the input type.
Source§

impl From<ListV2LoggingLevelsError> for Error

Source§

fn from(err: ListV2LoggingLevelsError) -> Self

Converts to this type from the input type.
Source§

impl From<ListViolationEventsError> for Error

Source§

fn from(err: ListViolationEventsError) -> Self

Converts to this type from the input type.
Source§

impl From<PutVerificationStateOnViolationError> for Error

Source§

fn from(err: PutVerificationStateOnViolationError) -> Self

Converts to this type from the input type.
Source§

impl From<RegisterCACertificateError> for Error

Source§

fn from(err: RegisterCACertificateError) -> Self

Converts to this type from the input type.
Source§

impl From<RegisterCertificateError> for Error

Source§

fn from(err: RegisterCertificateError) -> Self

Converts to this type from the input type.
Source§

impl From<RegisterCertificateWithoutCAError> for Error

Source§

fn from(err: RegisterCertificateWithoutCAError) -> Self

Converts to this type from the input type.
Source§

impl From<RegisterThingError> for Error

Source§

fn from(err: RegisterThingError) -> Self

Converts to this type from the input type.
Source§

impl From<RejectCertificateTransferError> for Error

Source§

fn from(err: RejectCertificateTransferError) -> Self

Converts to this type from the input type.
Source§

impl From<RemoveThingFromBillingGroupError> for Error

Source§

fn from(err: RemoveThingFromBillingGroupError) -> Self

Converts to this type from the input type.
Source§

impl From<RemoveThingFromThingGroupError> for Error

Source§

fn from(err: RemoveThingFromThingGroupError) -> Self

Converts to this type from the input type.
Source§

impl From<ReplaceTopicRuleError> for Error

Source§

fn from(err: ReplaceTopicRuleError) -> Self

Converts to this type from the input type.
Source§

impl<R> From<SdkError<AcceptCertificateTransferError, R>> for Error
where R: Send + Sync + Debug + 'static,

Source§

fn from(err: SdkError<AcceptCertificateTransferError, R>) -> Self

Converts to this type from the input type.
Source§

impl<R> From<SdkError<AddThingToBillingGroupError, R>> for Error
where R: Send + Sync + Debug + 'static,

Source§

fn from(err: SdkError<AddThingToBillingGroupError, R>) -> Self

Converts to this type from the input type.
Source§

impl<R> From<SdkError<AddThingToThingGroupError, R>> for Error
where R: Send + Sync + Debug + 'static,

Source§

fn from(err: SdkError<AddThingToThingGroupError, R>) -> Self

Converts to this type from the input type.
Source§

impl<R> From<SdkError<AssociateSbomWithPackageVersionError, R>> for Error
where R: Send + Sync + Debug + 'static,

Source§

fn from(err: SdkError<AssociateSbomWithPackageVersionError, R>) -> Self

Converts to this type from the input type.
Source§

impl<R> From<SdkError<AssociateTargetsWithJobError, R>> for Error
where R: Send + Sync + Debug + 'static,

Source§

fn from(err: SdkError<AssociateTargetsWithJobError, R>) -> Self

Converts to this type from the input type.
Source§

impl<R> From<SdkError<AttachPolicyError, R>> for Error
where R: Send + Sync + Debug + 'static,

Source§

fn from(err: SdkError<AttachPolicyError, R>) -> Self

Converts to this type from the input type.
Source§

impl<R> From<SdkError<AttachPrincipalPolicyError, R>> for Error
where R: Send + Sync + Debug + 'static,

Source§

fn from(err: SdkError<AttachPrincipalPolicyError, R>) -> Self

Converts to this type from the input type.
Source§

impl<R> From<SdkError<AttachSecurityProfileError, R>> for Error
where R: Send + Sync + Debug + 'static,

Source§

fn from(err: SdkError<AttachSecurityProfileError, R>) -> Self

Converts to this type from the input type.
Source§

impl<R> From<SdkError<AttachThingPrincipalError, R>> for Error
where R: Send + Sync + Debug + 'static,

Source§

fn from(err: SdkError<AttachThingPrincipalError, R>) -> Self

Converts to this type from the input type.
Source§

impl<R> From<SdkError<CancelAuditMitigationActionsTaskError, R>> for Error
where R: Send + Sync + Debug + 'static,

Source§

fn from(err: SdkError<CancelAuditMitigationActionsTaskError, R>) -> Self

Converts to this type from the input type.
Source§

impl<R> From<SdkError<CancelAuditTaskError, R>> for Error
where R: Send + Sync + Debug + 'static,

Source§

fn from(err: SdkError<CancelAuditTaskError, R>) -> Self

Converts to this type from the input type.
Source§

impl<R> From<SdkError<CancelCertificateTransferError, R>> for Error
where R: Send + Sync + Debug + 'static,

Source§

fn from(err: SdkError<CancelCertificateTransferError, R>) -> Self

Converts to this type from the input type.
Source§

impl<R> From<SdkError<CancelDetectMitigationActionsTaskError, R>> for Error
where R: Send + Sync + Debug + 'static,

Source§

fn from(err: SdkError<CancelDetectMitigationActionsTaskError, R>) -> Self

Converts to this type from the input type.
Source§

impl<R> From<SdkError<CancelJobError, R>> for Error
where R: Send + Sync + Debug + 'static,

Source§

fn from(err: SdkError<CancelJobError, R>) -> Self

Converts to this type from the input type.
Source§

impl<R> From<SdkError<CancelJobExecutionError, R>> for Error
where R: Send + Sync + Debug + 'static,

Source§

fn from(err: SdkError<CancelJobExecutionError, R>) -> Self

Converts to this type from the input type.
Source§

impl<R> From<SdkError<ClearDefaultAuthorizerError, R>> for Error
where R: Send + Sync + Debug + 'static,

Source§

fn from(err: SdkError<ClearDefaultAuthorizerError, R>) -> Self

Converts to this type from the input type.
Source§

impl<R> From<SdkError<ConfirmTopicRuleDestinationError, R>> for Error
where R: Send + Sync + Debug + 'static,

Source§

fn from(err: SdkError<ConfirmTopicRuleDestinationError, R>) -> Self

Converts to this type from the input type.
Source§

impl<R> From<SdkError<CreateAuditSuppressionError, R>> for Error
where R: Send + Sync + Debug + 'static,

Source§

fn from(err: SdkError<CreateAuditSuppressionError, R>) -> Self

Converts to this type from the input type.
Source§

impl<R> From<SdkError<CreateAuthorizerError, R>> for Error
where R: Send + Sync + Debug + 'static,

Source§

fn from(err: SdkError<CreateAuthorizerError, R>) -> Self

Converts to this type from the input type.
Source§

impl<R> From<SdkError<CreateBillingGroupError, R>> for Error
where R: Send + Sync + Debug + 'static,

Source§

fn from(err: SdkError<CreateBillingGroupError, R>) -> Self

Converts to this type from the input type.
Source§

impl<R> From<SdkError<CreateCertificateFromCsrError, R>> for Error
where R: Send + Sync + Debug + 'static,

Source§

fn from(err: SdkError<CreateCertificateFromCsrError, R>) -> Self

Converts to this type from the input type.
Source§

impl<R> From<SdkError<CreateCertificateProviderError, R>> for Error
where R: Send + Sync + Debug + 'static,

Source§

fn from(err: SdkError<CreateCertificateProviderError, R>) -> Self

Converts to this type from the input type.
Source§

impl<R> From<SdkError<CreateCommandError, R>> for Error
where R: Send + Sync + Debug + 'static,

Source§

fn from(err: SdkError<CreateCommandError, R>) -> Self

Converts to this type from the input type.
Source§

impl<R> From<SdkError<CreateCustomMetricError, R>> for Error
where R: Send + Sync + Debug + 'static,

Source§

fn from(err: SdkError<CreateCustomMetricError, R>) -> Self

Converts to this type from the input type.
Source§

impl<R> From<SdkError<CreateDimensionError, R>> for Error
where R: Send + Sync + Debug + 'static,

Source§

fn from(err: SdkError<CreateDimensionError, R>) -> Self

Converts to this type from the input type.
Source§

impl<R> From<SdkError<CreateDomainConfigurationError, R>> for Error
where R: Send + Sync + Debug + 'static,

Source§

fn from(err: SdkError<CreateDomainConfigurationError, R>) -> Self

Converts to this type from the input type.
Source§

impl<R> From<SdkError<CreateDynamicThingGroupError, R>> for Error
where R: Send + Sync + Debug + 'static,

Source§

fn from(err: SdkError<CreateDynamicThingGroupError, R>) -> Self

Converts to this type from the input type.
Source§

impl<R> From<SdkError<CreateFleetMetricError, R>> for Error
where R: Send + Sync + Debug + 'static,

Source§

fn from(err: SdkError<CreateFleetMetricError, R>) -> Self

Converts to this type from the input type.
Source§

impl<R> From<SdkError<CreateJobError, R>> for Error
where R: Send + Sync + Debug + 'static,

Source§

fn from(err: SdkError<CreateJobError, R>) -> Self

Converts to this type from the input type.
Source§

impl<R> From<SdkError<CreateJobTemplateError, R>> for Error
where R: Send + Sync + Debug + 'static,

Source§

fn from(err: SdkError<CreateJobTemplateError, R>) -> Self

Converts to this type from the input type.
Source§

impl<R> From<SdkError<CreateKeysAndCertificateError, R>> for Error
where R: Send + Sync + Debug + 'static,

Source§

fn from(err: SdkError<CreateKeysAndCertificateError, R>) -> Self

Converts to this type from the input type.
Source§

impl<R> From<SdkError<CreateMitigationActionError, R>> for Error
where R: Send + Sync + Debug + 'static,

Source§

fn from(err: SdkError<CreateMitigationActionError, R>) -> Self

Converts to this type from the input type.
Source§

impl<R> From<SdkError<CreateOTAUpdateError, R>> for Error
where R: Send + Sync + Debug + 'static,

Source§

fn from(err: SdkError<CreateOTAUpdateError, R>) -> Self

Converts to this type from the input type.
Source§

impl<R> From<SdkError<CreatePackageError, R>> for Error
where R: Send + Sync + Debug + 'static,

Source§

fn from(err: SdkError<CreatePackageError, R>) -> Self

Converts to this type from the input type.
Source§

impl<R> From<SdkError<CreatePackageVersionError, R>> for Error
where R: Send + Sync + Debug + 'static,

Source§

fn from(err: SdkError<CreatePackageVersionError, R>) -> Self

Converts to this type from the input type.
Source§

impl<R> From<SdkError<CreatePolicyError, R>> for Error
where R: Send + Sync + Debug + 'static,

Source§

fn from(err: SdkError<CreatePolicyError, R>) -> Self

Converts to this type from the input type.
Source§

impl<R> From<SdkError<CreatePolicyVersionError, R>> for Error
where R: Send + Sync + Debug + 'static,

Source§

fn from(err: SdkError<CreatePolicyVersionError, R>) -> Self

Converts to this type from the input type.
Source§

impl<R> From<SdkError<CreateProvisioningClaimError, R>> for Error
where R: Send + Sync + Debug + 'static,

Source§

fn from(err: SdkError<CreateProvisioningClaimError, R>) -> Self

Converts to this type from the input type.
Source§

impl<R> From<SdkError<CreateProvisioningTemplateError, R>> for Error
where R: Send + Sync + Debug + 'static,

Source§

fn from(err: SdkError<CreateProvisioningTemplateError, R>) -> Self

Converts to this type from the input type.
Source§

impl<R> From<SdkError<CreateProvisioningTemplateVersionError, R>> for Error
where R: Send + Sync + Debug + 'static,

Source§

fn from(err: SdkError<CreateProvisioningTemplateVersionError, R>) -> Self

Converts to this type from the input type.
Source§

impl<R> From<SdkError<CreateRoleAliasError, R>> for Error
where R: Send + Sync + Debug + 'static,

Source§

fn from(err: SdkError<CreateRoleAliasError, R>) -> Self

Converts to this type from the input type.
Source§

impl<R> From<SdkError<CreateScheduledAuditError, R>> for Error
where R: Send + Sync + Debug + 'static,

Source§

fn from(err: SdkError<CreateScheduledAuditError, R>) -> Self

Converts to this type from the input type.
Source§

impl<R> From<SdkError<CreateSecurityProfileError, R>> for Error
where R: Send + Sync + Debug + 'static,

Source§

fn from(err: SdkError<CreateSecurityProfileError, R>) -> Self

Converts to this type from the input type.
Source§

impl<R> From<SdkError<CreateStreamError, R>> for Error
where R: Send + Sync + Debug + 'static,

Source§

fn from(err: SdkError<CreateStreamError, R>) -> Self

Converts to this type from the input type.
Source§

impl<R> From<SdkError<CreateThingError, R>> for Error
where R: Send + Sync + Debug + 'static,

Source§

fn from(err: SdkError<CreateThingError, R>) -> Self

Converts to this type from the input type.
Source§

impl<R> From<SdkError<CreateThingGroupError, R>> for Error
where R: Send + Sync + Debug + 'static,

Source§

fn from(err: SdkError<CreateThingGroupError, R>) -> Self

Converts to this type from the input type.
Source§

impl<R> From<SdkError<CreateThingTypeError, R>> for Error
where R: Send + Sync + Debug + 'static,

Source§

fn from(err: SdkError<CreateThingTypeError, R>) -> Self

Converts to this type from the input type.
Source§

impl<R> From<SdkError<CreateTopicRuleDestinationError, R>> for Error
where R: Send + Sync + Debug + 'static,

Source§

fn from(err: SdkError<CreateTopicRuleDestinationError, R>) -> Self

Converts to this type from the input type.
Source§

impl<R> From<SdkError<CreateTopicRuleError, R>> for Error
where R: Send + Sync + Debug + 'static,

Source§

fn from(err: SdkError<CreateTopicRuleError, R>) -> Self

Converts to this type from the input type.
Source§

impl<R> From<SdkError<DeleteAccountAuditConfigurationError, R>> for Error
where R: Send + Sync + Debug + 'static,

Source§

fn from(err: SdkError<DeleteAccountAuditConfigurationError, R>) -> Self

Converts to this type from the input type.
Source§

impl<R> From<SdkError<DeleteAuditSuppressionError, R>> for Error
where R: Send + Sync + Debug + 'static,

Source§

fn from(err: SdkError<DeleteAuditSuppressionError, R>) -> Self

Converts to this type from the input type.
Source§

impl<R> From<SdkError<DeleteAuthorizerError, R>> for Error
where R: Send + Sync + Debug + 'static,

Source§

fn from(err: SdkError<DeleteAuthorizerError, R>) -> Self

Converts to this type from the input type.
Source§

impl<R> From<SdkError<DeleteBillingGroupError, R>> for Error
where R: Send + Sync + Debug + 'static,

Source§

fn from(err: SdkError<DeleteBillingGroupError, R>) -> Self

Converts to this type from the input type.
Source§

impl<R> From<SdkError<DeleteCACertificateError, R>> for Error
where R: Send + Sync + Debug + 'static,

Source§

fn from(err: SdkError<DeleteCACertificateError, R>) -> Self

Converts to this type from the input type.
Source§

impl<R> From<SdkError<DeleteCertificateError, R>> for Error
where R: Send + Sync + Debug + 'static,

Source§

fn from(err: SdkError<DeleteCertificateError, R>) -> Self

Converts to this type from the input type.
Source§

impl<R> From<SdkError<DeleteCertificateProviderError, R>> for Error
where R: Send + Sync + Debug + 'static,

Source§

fn from(err: SdkError<DeleteCertificateProviderError, R>) -> Self

Converts to this type from the input type.
Source§

impl<R> From<SdkError<DeleteCommandError, R>> for Error
where R: Send + Sync + Debug + 'static,

Source§

fn from(err: SdkError<DeleteCommandError, R>) -> Self

Converts to this type from the input type.
Source§

impl<R> From<SdkError<DeleteCommandExecutionError, R>> for Error
where R: Send + Sync + Debug + 'static,

Source§

fn from(err: SdkError<DeleteCommandExecutionError, R>) -> Self

Converts to this type from the input type.
Source§

impl<R> From<SdkError<DeleteCustomMetricError, R>> for Error
where R: Send + Sync + Debug + 'static,

Source§

fn from(err: SdkError<DeleteCustomMetricError, R>) -> Self

Converts to this type from the input type.
Source§

impl<R> From<SdkError<DeleteDimensionError, R>> for Error
where R: Send + Sync + Debug + 'static,

Source§

fn from(err: SdkError<DeleteDimensionError, R>) -> Self

Converts to this type from the input type.
Source§

impl<R> From<SdkError<DeleteDomainConfigurationError, R>> for Error
where R: Send + Sync + Debug + 'static,

Source§

fn from(err: SdkError<DeleteDomainConfigurationError, R>) -> Self

Converts to this type from the input type.
Source§

impl<R> From<SdkError<DeleteDynamicThingGroupError, R>> for Error
where R: Send + Sync + Debug + 'static,

Source§

fn from(err: SdkError<DeleteDynamicThingGroupError, R>) -> Self

Converts to this type from the input type.
Source§

impl<R> From<SdkError<DeleteFleetMetricError, R>> for Error
where R: Send + Sync + Debug + 'static,

Source§

fn from(err: SdkError<DeleteFleetMetricError, R>) -> Self

Converts to this type from the input type.
Source§

impl<R> From<SdkError<DeleteJobError, R>> for Error
where R: Send + Sync + Debug + 'static,

Source§

fn from(err: SdkError<DeleteJobError, R>) -> Self

Converts to this type from the input type.
Source§

impl<R> From<SdkError<DeleteJobExecutionError, R>> for Error
where R: Send + Sync + Debug + 'static,

Source§

fn from(err: SdkError<DeleteJobExecutionError, R>) -> Self

Converts to this type from the input type.
Source§

impl<R> From<SdkError<DeleteJobTemplateError, R>> for Error
where R: Send + Sync + Debug + 'static,

Source§

fn from(err: SdkError<DeleteJobTemplateError, R>) -> Self

Converts to this type from the input type.
Source§

impl<R> From<SdkError<DeleteMitigationActionError, R>> for Error
where R: Send + Sync + Debug + 'static,

Source§

fn from(err: SdkError<DeleteMitigationActionError, R>) -> Self

Converts to this type from the input type.
Source§

impl<R> From<SdkError<DeleteOTAUpdateError, R>> for Error
where R: Send + Sync + Debug + 'static,

Source§

fn from(err: SdkError<DeleteOTAUpdateError, R>) -> Self

Converts to this type from the input type.
Source§

impl<R> From<SdkError<DeletePackageError, R>> for Error
where R: Send + Sync + Debug + 'static,

Source§

fn from(err: SdkError<DeletePackageError, R>) -> Self

Converts to this type from the input type.
Source§

impl<R> From<SdkError<DeletePackageVersionError, R>> for Error
where R: Send + Sync + Debug + 'static,

Source§

fn from(err: SdkError<DeletePackageVersionError, R>) -> Self

Converts to this type from the input type.
Source§

impl<R> From<SdkError<DeletePolicyError, R>> for Error
where R: Send + Sync + Debug + 'static,

Source§

fn from(err: SdkError<DeletePolicyError, R>) -> Self

Converts to this type from the input type.
Source§

impl<R> From<SdkError<DeletePolicyVersionError, R>> for Error
where R: Send + Sync + Debug + 'static,

Source§

fn from(err: SdkError<DeletePolicyVersionError, R>) -> Self

Converts to this type from the input type.
Source§

impl<R> From<SdkError<DeleteProvisioningTemplateError, R>> for Error
where R: Send + Sync + Debug + 'static,

Source§

fn from(err: SdkError<DeleteProvisioningTemplateError, R>) -> Self

Converts to this type from the input type.
Source§

impl<R> From<SdkError<DeleteProvisioningTemplateVersionError, R>> for Error
where R: Send + Sync + Debug + 'static,

Source§

fn from(err: SdkError<DeleteProvisioningTemplateVersionError, R>) -> Self

Converts to this type from the input type.
Source§

impl<R> From<SdkError<DeleteRegistrationCodeError, R>> for Error
where R: Send + Sync + Debug + 'static,

Source§

fn from(err: SdkError<DeleteRegistrationCodeError, R>) -> Self

Converts to this type from the input type.
Source§

impl<R> From<SdkError<DeleteRoleAliasError, R>> for Error
where R: Send + Sync + Debug + 'static,

Source§

fn from(err: SdkError<DeleteRoleAliasError, R>) -> Self

Converts to this type from the input type.
Source§

impl<R> From<SdkError<DeleteScheduledAuditError, R>> for Error
where R: Send + Sync + Debug + 'static,

Source§

fn from(err: SdkError<DeleteScheduledAuditError, R>) -> Self

Converts to this type from the input type.
Source§

impl<R> From<SdkError<DeleteSecurityProfileError, R>> for Error
where R: Send + Sync + Debug + 'static,

Source§

fn from(err: SdkError<DeleteSecurityProfileError, R>) -> Self

Converts to this type from the input type.
Source§

impl<R> From<SdkError<DeleteStreamError, R>> for Error
where R: Send + Sync + Debug + 'static,

Source§

fn from(err: SdkError<DeleteStreamError, R>) -> Self

Converts to this type from the input type.
Source§

impl<R> From<SdkError<DeleteThingError, R>> for Error
where R: Send + Sync + Debug + 'static,

Source§

fn from(err: SdkError<DeleteThingError, R>) -> Self

Converts to this type from the input type.
Source§

impl<R> From<SdkError<DeleteThingGroupError, R>> for Error
where R: Send + Sync + Debug + 'static,

Source§

fn from(err: SdkError<DeleteThingGroupError, R>) -> Self

Converts to this type from the input type.
Source§

impl<R> From<SdkError<DeleteThingTypeError, R>> for Error
where R: Send + Sync + Debug + 'static,

Source§

fn from(err: SdkError<DeleteThingTypeError, R>) -> Self

Converts to this type from the input type.
Source§

impl<R> From<SdkError<DeleteTopicRuleDestinationError, R>> for Error
where R: Send + Sync + Debug + 'static,

Source§

fn from(err: SdkError<DeleteTopicRuleDestinationError, R>) -> Self

Converts to this type from the input type.
Source§

impl<R> From<SdkError<DeleteTopicRuleError, R>> for Error
where R: Send + Sync + Debug + 'static,

Source§

fn from(err: SdkError<DeleteTopicRuleError, R>) -> Self

Converts to this type from the input type.
Source§

impl<R> From<SdkError<DeleteV2LoggingLevelError, R>> for Error
where R: Send + Sync + Debug + 'static,

Source§

fn from(err: SdkError<DeleteV2LoggingLevelError, R>) -> Self

Converts to this type from the input type.
Source§

impl<R> From<SdkError<DeprecateThingTypeError, R>> for Error
where R: Send + Sync + Debug + 'static,

Source§

fn from(err: SdkError<DeprecateThingTypeError, R>) -> Self

Converts to this type from the input type.
Source§

impl<R> From<SdkError<DescribeAccountAuditConfigurationError, R>> for Error
where R: Send + Sync + Debug + 'static,

Source§

fn from(err: SdkError<DescribeAccountAuditConfigurationError, R>) -> Self

Converts to this type from the input type.
Source§

impl<R> From<SdkError<DescribeAuditFindingError, R>> for Error
where R: Send + Sync + Debug + 'static,

Source§

fn from(err: SdkError<DescribeAuditFindingError, R>) -> Self

Converts to this type from the input type.
Source§

impl<R> From<SdkError<DescribeAuditMitigationActionsTaskError, R>> for Error
where R: Send + Sync + Debug + 'static,

Source§

fn from(err: SdkError<DescribeAuditMitigationActionsTaskError, R>) -> Self

Converts to this type from the input type.
Source§

impl<R> From<SdkError<DescribeAuditSuppressionError, R>> for Error
where R: Send + Sync + Debug + 'static,

Source§

fn from(err: SdkError<DescribeAuditSuppressionError, R>) -> Self

Converts to this type from the input type.
Source§

impl<R> From<SdkError<DescribeAuditTaskError, R>> for Error
where R: Send + Sync + Debug + 'static,

Source§

fn from(err: SdkError<DescribeAuditTaskError, R>) -> Self

Converts to this type from the input type.
Source§

impl<R> From<SdkError<DescribeAuthorizerError, R>> for Error
where R: Send + Sync + Debug + 'static,

Source§

fn from(err: SdkError<DescribeAuthorizerError, R>) -> Self

Converts to this type from the input type.
Source§

impl<R> From<SdkError<DescribeBillingGroupError, R>> for Error
where R: Send + Sync + Debug + 'static,

Source§

fn from(err: SdkError<DescribeBillingGroupError, R>) -> Self

Converts to this type from the input type.
Source§

impl<R> From<SdkError<DescribeCACertificateError, R>> for Error
where R: Send + Sync + Debug + 'static,

Source§

fn from(err: SdkError<DescribeCACertificateError, R>) -> Self

Converts to this type from the input type.
Source§

impl<R> From<SdkError<DescribeCertificateError, R>> for Error
where R: Send + Sync + Debug + 'static,

Source§

fn from(err: SdkError<DescribeCertificateError, R>) -> Self

Converts to this type from the input type.
Source§

impl<R> From<SdkError<DescribeCertificateProviderError, R>> for Error
where R: Send + Sync + Debug + 'static,

Source§

fn from(err: SdkError<DescribeCertificateProviderError, R>) -> Self

Converts to this type from the input type.
Source§

impl<R> From<SdkError<DescribeCustomMetricError, R>> for Error
where R: Send + Sync + Debug + 'static,

Source§

fn from(err: SdkError<DescribeCustomMetricError, R>) -> Self

Converts to this type from the input type.
Source§

impl<R> From<SdkError<DescribeDefaultAuthorizerError, R>> for Error
where R: Send + Sync + Debug + 'static,

Source§

fn from(err: SdkError<DescribeDefaultAuthorizerError, R>) -> Self

Converts to this type from the input type.
Source§

impl<R> From<SdkError<DescribeDetectMitigationActionsTaskError, R>> for Error
where R: Send + Sync + Debug + 'static,

Source§

fn from(err: SdkError<DescribeDetectMitigationActionsTaskError, R>) -> Self

Converts to this type from the input type.
Source§

impl<R> From<SdkError<DescribeDimensionError, R>> for Error
where R: Send + Sync + Debug + 'static,

Source§

fn from(err: SdkError<DescribeDimensionError, R>) -> Self

Converts to this type from the input type.
Source§

impl<R> From<SdkError<DescribeDomainConfigurationError, R>> for Error
where R: Send + Sync + Debug + 'static,

Source§

fn from(err: SdkError<DescribeDomainConfigurationError, R>) -> Self

Converts to this type from the input type.
Source§

impl<R> From<SdkError<DescribeEndpointError, R>> for Error
where R: Send + Sync + Debug + 'static,

Source§

fn from(err: SdkError<DescribeEndpointError, R>) -> Self

Converts to this type from the input type.
Source§

impl<R> From<SdkError<DescribeEventConfigurationsError, R>> for Error
where R: Send + Sync + Debug + 'static,

Source§

fn from(err: SdkError<DescribeEventConfigurationsError, R>) -> Self

Converts to this type from the input type.
Source§

impl<R> From<SdkError<DescribeFleetMetricError, R>> for Error
where R: Send + Sync + Debug + 'static,

Source§

fn from(err: SdkError<DescribeFleetMetricError, R>) -> Self

Converts to this type from the input type.
Source§

impl<R> From<SdkError<DescribeIndexError, R>> for Error
where R: Send + Sync + Debug + 'static,

Source§

fn from(err: SdkError<DescribeIndexError, R>) -> Self

Converts to this type from the input type.
Source§

impl<R> From<SdkError<DescribeJobError, R>> for Error
where R: Send + Sync + Debug + 'static,

Source§

fn from(err: SdkError<DescribeJobError, R>) -> Self

Converts to this type from the input type.
Source§

impl<R> From<SdkError<DescribeJobExecutionError, R>> for Error
where R: Send + Sync + Debug + 'static,

Source§

fn from(err: SdkError<DescribeJobExecutionError, R>) -> Self

Converts to this type from the input type.
Source§

impl<R> From<SdkError<DescribeJobTemplateError, R>> for Error
where R: Send + Sync + Debug + 'static,

Source§

fn from(err: SdkError<DescribeJobTemplateError, R>) -> Self

Converts to this type from the input type.
Source§

impl<R> From<SdkError<DescribeManagedJobTemplateError, R>> for Error
where R: Send + Sync + Debug + 'static,

Source§

fn from(err: SdkError<DescribeManagedJobTemplateError, R>) -> Self

Converts to this type from the input type.
Source§

impl<R> From<SdkError<DescribeMitigationActionError, R>> for Error
where R: Send + Sync + Debug + 'static,

Source§

fn from(err: SdkError<DescribeMitigationActionError, R>) -> Self

Converts to this type from the input type.
Source§

impl<R> From<SdkError<DescribeProvisioningTemplateError, R>> for Error
where R: Send + Sync + Debug + 'static,

Source§

fn from(err: SdkError<DescribeProvisioningTemplateError, R>) -> Self

Converts to this type from the input type.
Source§

impl<R> From<SdkError<DescribeProvisioningTemplateVersionError, R>> for Error
where R: Send + Sync + Debug + 'static,

Source§

fn from(err: SdkError<DescribeProvisioningTemplateVersionError, R>) -> Self

Converts to this type from the input type.
Source§

impl<R> From<SdkError<DescribeRoleAliasError, R>> for Error
where R: Send + Sync + Debug + 'static,

Source§

fn from(err: SdkError<DescribeRoleAliasError, R>) -> Self

Converts to this type from the input type.
Source§

impl<R> From<SdkError<DescribeScheduledAuditError, R>> for Error
where R: Send + Sync + Debug + 'static,

Source§

fn from(err: SdkError<DescribeScheduledAuditError, R>) -> Self

Converts to this type from the input type.
Source§

impl<R> From<SdkError<DescribeSecurityProfileError, R>> for Error
where R: Send + Sync + Debug + 'static,

Source§

fn from(err: SdkError<DescribeSecurityProfileError, R>) -> Self

Converts to this type from the input type.
Source§

impl<R> From<SdkError<DescribeStreamError, R>> for Error
where R: Send + Sync + Debug + 'static,

Source§

fn from(err: SdkError<DescribeStreamError, R>) -> Self

Converts to this type from the input type.
Source§

impl<R> From<SdkError<DescribeThingError, R>> for Error
where R: Send + Sync + Debug + 'static,

Source§

fn from(err: SdkError<DescribeThingError, R>) -> Self

Converts to this type from the input type.
Source§

impl<R> From<SdkError<DescribeThingGroupError, R>> for Error
where R: Send + Sync + Debug + 'static,

Source§

fn from(err: SdkError<DescribeThingGroupError, R>) -> Self

Converts to this type from the input type.
Source§

impl<R> From<SdkError<DescribeThingRegistrationTaskError, R>> for Error
where R: Send + Sync + Debug + 'static,

Source§

fn from(err: SdkError<DescribeThingRegistrationTaskError, R>) -> Self

Converts to this type from the input type.
Source§

impl<R> From<SdkError<DescribeThingTypeError, R>> for Error
where R: Send + Sync + Debug + 'static,

Source§

fn from(err: SdkError<DescribeThingTypeError, R>) -> Self

Converts to this type from the input type.
Source§

impl<R> From<SdkError<DetachPolicyError, R>> for Error
where R: Send + Sync + Debug + 'static,

Source§

fn from(err: SdkError<DetachPolicyError, R>) -> Self

Converts to this type from the input type.
Source§

impl<R> From<SdkError<DetachPrincipalPolicyError, R>> for Error
where R: Send + Sync + Debug + 'static,

Source§

fn from(err: SdkError<DetachPrincipalPolicyError, R>) -> Self

Converts to this type from the input type.
Source§

impl<R> From<SdkError<DetachSecurityProfileError, R>> for Error
where R: Send + Sync + Debug + 'static,

Source§

fn from(err: SdkError<DetachSecurityProfileError, R>) -> Self

Converts to this type from the input type.
Source§

impl<R> From<SdkError<DetachThingPrincipalError, R>> for Error
where R: Send + Sync + Debug + 'static,

Source§

fn from(err: SdkError<DetachThingPrincipalError, R>) -> Self

Converts to this type from the input type.
Source§

impl<R> From<SdkError<DisableTopicRuleError, R>> for Error
where R: Send + Sync + Debug + 'static,

Source§

fn from(err: SdkError<DisableTopicRuleError, R>) -> Self

Converts to this type from the input type.
Source§

impl<R> From<SdkError<DisassociateSbomFromPackageVersionError, R>> for Error
where R: Send + Sync + Debug + 'static,

Source§

fn from(err: SdkError<DisassociateSbomFromPackageVersionError, R>) -> Self

Converts to this type from the input type.
Source§

impl<R> From<SdkError<EnableTopicRuleError, R>> for Error
where R: Send + Sync + Debug + 'static,

Source§

fn from(err: SdkError<EnableTopicRuleError, R>) -> Self

Converts to this type from the input type.
Source§

impl<R> From<SdkError<GetBehaviorModelTrainingSummariesError, R>> for Error
where R: Send + Sync + Debug + 'static,

Source§

fn from(err: SdkError<GetBehaviorModelTrainingSummariesError, R>) -> Self

Converts to this type from the input type.
Source§

impl<R> From<SdkError<GetBucketsAggregationError, R>> for Error
where R: Send + Sync + Debug + 'static,

Source§

fn from(err: SdkError<GetBucketsAggregationError, R>) -> Self

Converts to this type from the input type.
Source§

impl<R> From<SdkError<GetCardinalityError, R>> for Error
where R: Send + Sync + Debug + 'static,

Source§

fn from(err: SdkError<GetCardinalityError, R>) -> Self

Converts to this type from the input type.
Source§

impl<R> From<SdkError<GetCommandError, R>> for Error
where R: Send + Sync + Debug + 'static,

Source§

fn from(err: SdkError<GetCommandError, R>) -> Self

Converts to this type from the input type.
Source§

impl<R> From<SdkError<GetCommandExecutionError, R>> for Error
where R: Send + Sync + Debug + 'static,

Source§

fn from(err: SdkError<GetCommandExecutionError, R>) -> Self

Converts to this type from the input type.
Source§

impl<R> From<SdkError<GetEffectivePoliciesError, R>> for Error
where R: Send + Sync + Debug + 'static,

Source§

fn from(err: SdkError<GetEffectivePoliciesError, R>) -> Self

Converts to this type from the input type.
Source§

impl<R> From<SdkError<GetIndexingConfigurationError, R>> for Error
where R: Send + Sync + Debug + 'static,

Source§

fn from(err: SdkError<GetIndexingConfigurationError, R>) -> Self

Converts to this type from the input type.
Source§

impl<R> From<SdkError<GetJobDocumentError, R>> for Error
where R: Send + Sync + Debug + 'static,

Source§

fn from(err: SdkError<GetJobDocumentError, R>) -> Self

Converts to this type from the input type.
Source§

impl<R> From<SdkError<GetLoggingOptionsError, R>> for Error
where R: Send + Sync + Debug + 'static,

Source§

fn from(err: SdkError<GetLoggingOptionsError, R>) -> Self

Converts to this type from the input type.
Source§

impl<R> From<SdkError<GetOTAUpdateError, R>> for Error
where R: Send + Sync + Debug + 'static,

Source§

fn from(err: SdkError<GetOTAUpdateError, R>) -> Self

Converts to this type from the input type.
Source§

impl<R> From<SdkError<GetPackageConfigurationError, R>> for Error
where R: Send + Sync + Debug + 'static,

Source§

fn from(err: SdkError<GetPackageConfigurationError, R>) -> Self

Converts to this type from the input type.
Source§

impl<R> From<SdkError<GetPackageError, R>> for Error
where R: Send + Sync + Debug + 'static,

Source§

fn from(err: SdkError<GetPackageError, R>) -> Self

Converts to this type from the input type.
Source§

impl<R> From<SdkError<GetPackageVersionError, R>> for Error
where R: Send + Sync + Debug + 'static,

Source§

fn from(err: SdkError<GetPackageVersionError, R>) -> Self

Converts to this type from the input type.
Source§

impl<R> From<SdkError<GetPercentilesError, R>> for Error
where R: Send + Sync + Debug + 'static,

Source§

fn from(err: SdkError<GetPercentilesError, R>) -> Self

Converts to this type from the input type.
Source§

impl<R> From<SdkError<GetPolicyError, R>> for Error
where R: Send + Sync + Debug + 'static,

Source§

fn from(err: SdkError<GetPolicyError, R>) -> Self

Converts to this type from the input type.
Source§

impl<R> From<SdkError<GetPolicyVersionError, R>> for Error
where R: Send + Sync + Debug + 'static,

Source§

fn from(err: SdkError<GetPolicyVersionError, R>) -> Self

Converts to this type from the input type.
Source§

impl<R> From<SdkError<GetRegistrationCodeError, R>> for Error
where R: Send + Sync + Debug + 'static,

Source§

fn from(err: SdkError<GetRegistrationCodeError, R>) -> Self

Converts to this type from the input type.
Source§

impl<R> From<SdkError<GetStatisticsError, R>> for Error
where R: Send + Sync + Debug + 'static,

Source§

fn from(err: SdkError<GetStatisticsError, R>) -> Self

Converts to this type from the input type.
Source§

impl<R> From<SdkError<GetThingConnectivityDataError, R>> for Error
where R: Send + Sync + Debug + 'static,

Source§

fn from(err: SdkError<GetThingConnectivityDataError, R>) -> Self

Converts to this type from the input type.
Source§

impl<R> From<SdkError<GetTopicRuleDestinationError, R>> for Error
where R: Send + Sync + Debug + 'static,

Source§

fn from(err: SdkError<GetTopicRuleDestinationError, R>) -> Self

Converts to this type from the input type.
Source§

impl<R> From<SdkError<GetTopicRuleError, R>> for Error
where R: Send + Sync + Debug + 'static,

Source§

fn from(err: SdkError<GetTopicRuleError, R>) -> Self

Converts to this type from the input type.
Source§

impl<R> From<SdkError<GetV2LoggingOptionsError, R>> for Error
where R: Send + Sync + Debug + 'static,

Source§

fn from(err: SdkError<GetV2LoggingOptionsError, R>) -> Self

Converts to this type from the input type.
Source§

impl<R> From<SdkError<ListActiveViolationsError, R>> for Error
where R: Send + Sync + Debug + 'static,

Source§

fn from(err: SdkError<ListActiveViolationsError, R>) -> Self

Converts to this type from the input type.
Source§

impl<R> From<SdkError<ListAttachedPoliciesError, R>> for Error
where R: Send + Sync + Debug + 'static,

Source§

fn from(err: SdkError<ListAttachedPoliciesError, R>) -> Self

Converts to this type from the input type.
Source§

impl<R> From<SdkError<ListAuditFindingsError, R>> for Error
where R: Send + Sync + Debug + 'static,

Source§

fn from(err: SdkError<ListAuditFindingsError, R>) -> Self

Converts to this type from the input type.
Source§

impl<R> From<SdkError<ListAuditMitigationActionsExecutionsError, R>> for Error
where R: Send + Sync + Debug + 'static,

Source§

fn from(err: SdkError<ListAuditMitigationActionsExecutionsError, R>) -> Self

Converts to this type from the input type.
Source§

impl<R> From<SdkError<ListAuditMitigationActionsTasksError, R>> for Error
where R: Send + Sync + Debug + 'static,

Source§

fn from(err: SdkError<ListAuditMitigationActionsTasksError, R>) -> Self

Converts to this type from the input type.
Source§

impl<R> From<SdkError<ListAuditSuppressionsError, R>> for Error
where R: Send + Sync + Debug + 'static,

Source§

fn from(err: SdkError<ListAuditSuppressionsError, R>) -> Self

Converts to this type from the input type.
Source§

impl<R> From<SdkError<ListAuditTasksError, R>> for Error
where R: Send + Sync + Debug + 'static,

Source§

fn from(err: SdkError<ListAuditTasksError, R>) -> Self

Converts to this type from the input type.
Source§

impl<R> From<SdkError<ListAuthorizersError, R>> for Error
where R: Send + Sync + Debug + 'static,

Source§

fn from(err: SdkError<ListAuthorizersError, R>) -> Self

Converts to this type from the input type.
Source§

impl<R> From<SdkError<ListBillingGroupsError, R>> for Error
where R: Send + Sync + Debug + 'static,

Source§

fn from(err: SdkError<ListBillingGroupsError, R>) -> Self

Converts to this type from the input type.
Source§

impl<R> From<SdkError<ListCACertificatesError, R>> for Error
where R: Send + Sync + Debug + 'static,

Source§

fn from(err: SdkError<ListCACertificatesError, R>) -> Self

Converts to this type from the input type.
Source§

impl<R> From<SdkError<ListCertificateProvidersError, R>> for Error
where R: Send + Sync + Debug + 'static,

Source§

fn from(err: SdkError<ListCertificateProvidersError, R>) -> Self

Converts to this type from the input type.
Source§

impl<R> From<SdkError<ListCertificatesByCAError, R>> for Error
where R: Send + Sync + Debug + 'static,

Source§

fn from(err: SdkError<ListCertificatesByCAError, R>) -> Self

Converts to this type from the input type.
Source§

impl<R> From<SdkError<ListCertificatesError, R>> for Error
where R: Send + Sync + Debug + 'static,

Source§

fn from(err: SdkError<ListCertificatesError, R>) -> Self

Converts to this type from the input type.
Source§

impl<R> From<SdkError<ListCommandExecutionsError, R>> for Error
where R: Send + Sync + Debug + 'static,

Source§

fn from(err: SdkError<ListCommandExecutionsError, R>) -> Self

Converts to this type from the input type.
Source§

impl<R> From<SdkError<ListCommandsError, R>> for Error
where R: Send + Sync + Debug + 'static,

Source§

fn from(err: SdkError<ListCommandsError, R>) -> Self

Converts to this type from the input type.
Source§

impl<R> From<SdkError<ListCustomMetricsError, R>> for Error
where R: Send + Sync + Debug + 'static,

Source§

fn from(err: SdkError<ListCustomMetricsError, R>) -> Self

Converts to this type from the input type.
Source§

impl<R> From<SdkError<ListDetectMitigationActionsExecutionsError, R>> for Error
where R: Send + Sync + Debug + 'static,

Source§

fn from(err: SdkError<ListDetectMitigationActionsExecutionsError, R>) -> Self

Converts to this type from the input type.
Source§

impl<R> From<SdkError<ListDetectMitigationActionsTasksError, R>> for Error
where R: Send + Sync + Debug + 'static,

Source§

fn from(err: SdkError<ListDetectMitigationActionsTasksError, R>) -> Self

Converts to this type from the input type.
Source§

impl<R> From<SdkError<ListDimensionsError, R>> for Error
where R: Send + Sync + Debug + 'static,

Source§

fn from(err: SdkError<ListDimensionsError, R>) -> Self

Converts to this type from the input type.
Source§

impl<R> From<SdkError<ListDomainConfigurationsError, R>> for Error
where R: Send + Sync + Debug + 'static,

Source§

fn from(err: SdkError<ListDomainConfigurationsError, R>) -> Self

Converts to this type from the input type.
Source§

impl<R> From<SdkError<ListFleetMetricsError, R>> for Error
where R: Send + Sync + Debug + 'static,

Source§

fn from(err: SdkError<ListFleetMetricsError, R>) -> Self

Converts to this type from the input type.
Source§

impl<R> From<SdkError<ListIndicesError, R>> for Error
where R: Send + Sync + Debug + 'static,

Source§

fn from(err: SdkError<ListIndicesError, R>) -> Self

Converts to this type from the input type.
Source§

impl<R> From<SdkError<ListJobExecutionsForJobError, R>> for Error
where R: Send + Sync + Debug + 'static,

Source§

fn from(err: SdkError<ListJobExecutionsForJobError, R>) -> Self

Converts to this type from the input type.
Source§

impl<R> From<SdkError<ListJobExecutionsForThingError, R>> for Error
where R: Send + Sync + Debug + 'static,

Source§

fn from(err: SdkError<ListJobExecutionsForThingError, R>) -> Self

Converts to this type from the input type.
Source§

impl<R> From<SdkError<ListJobTemplatesError, R>> for Error
where R: Send + Sync + Debug + 'static,

Source§

fn from(err: SdkError<ListJobTemplatesError, R>) -> Self

Converts to this type from the input type.
Source§

impl<R> From<SdkError<ListJobsError, R>> for Error
where R: Send + Sync + Debug + 'static,

Source§

fn from(err: SdkError<ListJobsError, R>) -> Self

Converts to this type from the input type.
Source§

impl<R> From<SdkError<ListManagedJobTemplatesError, R>> for Error
where R: Send + Sync + Debug + 'static,

Source§

fn from(err: SdkError<ListManagedJobTemplatesError, R>) -> Self

Converts to this type from the input type.
Source§

impl<R> From<SdkError<ListMetricValuesError, R>> for Error
where R: Send + Sync + Debug + 'static,

Source§

fn from(err: SdkError<ListMetricValuesError, R>) -> Self

Converts to this type from the input type.
Source§

impl<R> From<SdkError<ListMitigationActionsError, R>> for Error
where R: Send + Sync + Debug + 'static,

Source§

fn from(err: SdkError<ListMitigationActionsError, R>) -> Self

Converts to this type from the input type.
Source§

impl<R> From<SdkError<ListOTAUpdatesError, R>> for Error
where R: Send + Sync + Debug + 'static,

Source§

fn from(err: SdkError<ListOTAUpdatesError, R>) -> Self

Converts to this type from the input type.
Source§

impl<R> From<SdkError<ListOutgoingCertificatesError, R>> for Error
where R: Send + Sync + Debug + 'static,

Source§

fn from(err: SdkError<ListOutgoingCertificatesError, R>) -> Self

Converts to this type from the input type.
Source§

impl<R> From<SdkError<ListPackageVersionsError, R>> for Error
where R: Send + Sync + Debug + 'static,

Source§

fn from(err: SdkError<ListPackageVersionsError, R>) -> Self

Converts to this type from the input type.
Source§

impl<R> From<SdkError<ListPackagesError, R>> for Error
where R: Send + Sync + Debug + 'static,

Source§

fn from(err: SdkError<ListPackagesError, R>) -> Self

Converts to this type from the input type.
Source§

impl<R> From<SdkError<ListPoliciesError, R>> for Error
where R: Send + Sync + Debug + 'static,

Source§

fn from(err: SdkError<ListPoliciesError, R>) -> Self

Converts to this type from the input type.
Source§

impl<R> From<SdkError<ListPolicyPrincipalsError, R>> for Error
where R: Send + Sync + Debug + 'static,

Source§

fn from(err: SdkError<ListPolicyPrincipalsError, R>) -> Self

Converts to this type from the input type.
Source§

impl<R> From<SdkError<ListPolicyVersionsError, R>> for Error
where R: Send + Sync + Debug + 'static,

Source§

fn from(err: SdkError<ListPolicyVersionsError, R>) -> Self

Converts to this type from the input type.
Source§

impl<R> From<SdkError<ListPrincipalPoliciesError, R>> for Error
where R: Send + Sync + Debug + 'static,

Source§

fn from(err: SdkError<ListPrincipalPoliciesError, R>) -> Self

Converts to this type from the input type.
Source§

impl<R> From<SdkError<ListPrincipalThingsError, R>> for Error
where R: Send + Sync + Debug + 'static,

Source§

fn from(err: SdkError<ListPrincipalThingsError, R>) -> Self

Converts to this type from the input type.
Source§

impl<R> From<SdkError<ListPrincipalThingsV2Error, R>> for Error
where R: Send + Sync + Debug + 'static,

Source§

fn from(err: SdkError<ListPrincipalThingsV2Error, R>) -> Self

Converts to this type from the input type.
Source§

impl<R> From<SdkError<ListProvisioningTemplateVersionsError, R>> for Error
where R: Send + Sync + Debug + 'static,

Source§

fn from(err: SdkError<ListProvisioningTemplateVersionsError, R>) -> Self

Converts to this type from the input type.
Source§

impl<R> From<SdkError<ListProvisioningTemplatesError, R>> for Error
where R: Send + Sync + Debug + 'static,

Source§

fn from(err: SdkError<ListProvisioningTemplatesError, R>) -> Self

Converts to this type from the input type.
Source§

impl<R> From<SdkError<ListRelatedResourcesForAuditFindingError, R>> for Error
where R: Send + Sync + Debug + 'static,

Source§

fn from(err: SdkError<ListRelatedResourcesForAuditFindingError, R>) -> Self

Converts to this type from the input type.
Source§

impl<R> From<SdkError<ListRoleAliasesError, R>> for Error
where R: Send + Sync + Debug + 'static,

Source§

fn from(err: SdkError<ListRoleAliasesError, R>) -> Self

Converts to this type from the input type.
Source§

impl<R> From<SdkError<ListSbomValidationResultsError, R>> for Error
where R: Send + Sync + Debug + 'static,

Source§

fn from(err: SdkError<ListSbomValidationResultsError, R>) -> Self

Converts to this type from the input type.
Source§

impl<R> From<SdkError<ListScheduledAuditsError, R>> for Error
where R: Send + Sync + Debug + 'static,

Source§

fn from(err: SdkError<ListScheduledAuditsError, R>) -> Self

Converts to this type from the input type.
Source§

impl<R> From<SdkError<ListSecurityProfilesError, R>> for Error
where R: Send + Sync + Debug + 'static,

Source§

fn from(err: SdkError<ListSecurityProfilesError, R>) -> Self

Converts to this type from the input type.
Source§

impl<R> From<SdkError<ListSecurityProfilesForTargetError, R>> for Error
where R: Send + Sync + Debug + 'static,

Source§

fn from(err: SdkError<ListSecurityProfilesForTargetError, R>) -> Self

Converts to this type from the input type.
Source§

impl<R> From<SdkError<ListStreamsError, R>> for Error
where R: Send + Sync + Debug + 'static,

Source§

fn from(err: SdkError<ListStreamsError, R>) -> Self

Converts to this type from the input type.
Source§

impl<R> From<SdkError<ListTagsForResourceError, R>> for Error
where R: Send + Sync + Debug + 'static,

Source§

fn from(err: SdkError<ListTagsForResourceError, R>) -> Self

Converts to this type from the input type.
Source§

impl<R> From<SdkError<ListTargetsForPolicyError, R>> for Error
where R: Send + Sync + Debug + 'static,

Source§

fn from(err: SdkError<ListTargetsForPolicyError, R>) -> Self

Converts to this type from the input type.
Source§

impl<R> From<SdkError<ListTargetsForSecurityProfileError, R>> for Error
where R: Send + Sync + Debug + 'static,

Source§

fn from(err: SdkError<ListTargetsForSecurityProfileError, R>) -> Self

Converts to this type from the input type.
Source§

impl<R> From<SdkError<ListThingGroupsError, R>> for Error
where R: Send + Sync + Debug + 'static,

Source§

fn from(err: SdkError<ListThingGroupsError, R>) -> Self

Converts to this type from the input type.
Source§

impl<R> From<SdkError<ListThingGroupsForThingError, R>> for Error
where R: Send + Sync + Debug + 'static,

Source§

fn from(err: SdkError<ListThingGroupsForThingError, R>) -> Self

Converts to this type from the input type.
Source§

impl<R> From<SdkError<ListThingPrincipalsError, R>> for Error
where R: Send + Sync + Debug + 'static,

Source§

fn from(err: SdkError<ListThingPrincipalsError, R>) -> Self

Converts to this type from the input type.
Source§

impl<R> From<SdkError<ListThingPrincipalsV2Error, R>> for Error
where R: Send + Sync + Debug + 'static,

Source§

fn from(err: SdkError<ListThingPrincipalsV2Error, R>) -> Self

Converts to this type from the input type.
Source§

impl<R> From<SdkError<ListThingRegistrationTaskReportsError, R>> for Error
where R: Send + Sync + Debug + 'static,

Source§

fn from(err: SdkError<ListThingRegistrationTaskReportsError, R>) -> Self

Converts to this type from the input type.
Source§

impl<R> From<SdkError<ListThingRegistrationTasksError, R>> for Error
where R: Send + Sync + Debug + 'static,

Source§

fn from(err: SdkError<ListThingRegistrationTasksError, R>) -> Self

Converts to this type from the input type.
Source§

impl<R> From<SdkError<ListThingTypesError, R>> for Error
where R: Send + Sync + Debug + 'static,

Source§

fn from(err: SdkError<ListThingTypesError, R>) -> Self

Converts to this type from the input type.
Source§

impl<R> From<SdkError<ListThingsError, R>> for Error
where R: Send + Sync + Debug + 'static,

Source§

fn from(err: SdkError<ListThingsError, R>) -> Self

Converts to this type from the input type.
Source§

impl<R> From<SdkError<ListThingsInBillingGroupError, R>> for Error
where R: Send + Sync + Debug + 'static,

Source§

fn from(err: SdkError<ListThingsInBillingGroupError, R>) -> Self

Converts to this type from the input type.
Source§

impl<R> From<SdkError<ListThingsInThingGroupError, R>> for Error
where R: Send + Sync + Debug + 'static,

Source§

fn from(err: SdkError<ListThingsInThingGroupError, R>) -> Self

Converts to this type from the input type.
Source§

impl<R> From<SdkError<ListTopicRuleDestinationsError, R>> for Error
where R: Send + Sync + Debug + 'static,

Source§

fn from(err: SdkError<ListTopicRuleDestinationsError, R>) -> Self

Converts to this type from the input type.
Source§

impl<R> From<SdkError<ListTopicRulesError, R>> for Error
where R: Send + Sync + Debug + 'static,

Source§

fn from(err: SdkError<ListTopicRulesError, R>) -> Self

Converts to this type from the input type.
Source§

impl<R> From<SdkError<ListV2LoggingLevelsError, R>> for Error
where R: Send + Sync + Debug + 'static,

Source§

fn from(err: SdkError<ListV2LoggingLevelsError, R>) -> Self

Converts to this type from the input type.
Source§

impl<R> From<SdkError<ListViolationEventsError, R>> for Error
where R: Send + Sync + Debug + 'static,

Source§

fn from(err: SdkError<ListViolationEventsError, R>) -> Self

Converts to this type from the input type.
Source§

impl<R> From<SdkError<PutVerificationStateOnViolationError, R>> for Error
where R: Send + Sync + Debug + 'static,

Source§

fn from(err: SdkError<PutVerificationStateOnViolationError, R>) -> Self

Converts to this type from the input type.
Source§

impl<R> From<SdkError<RegisterCACertificateError, R>> for Error
where R: Send + Sync + Debug + 'static,

Source§

fn from(err: SdkError<RegisterCACertificateError, R>) -> Self

Converts to this type from the input type.
Source§

impl<R> From<SdkError<RegisterCertificateError, R>> for Error
where R: Send + Sync + Debug + 'static,

Source§

fn from(err: SdkError<RegisterCertificateError, R>) -> Self

Converts to this type from the input type.
Source§

impl<R> From<SdkError<RegisterCertificateWithoutCAError, R>> for Error
where R: Send + Sync + Debug + 'static,

Source§

fn from(err: SdkError<RegisterCertificateWithoutCAError, R>) -> Self

Converts to this type from the input type.
Source§

impl<R> From<SdkError<RegisterThingError, R>> for Error
where R: Send + Sync + Debug + 'static,

Source§

fn from(err: SdkError<RegisterThingError, R>) -> Self

Converts to this type from the input type.
Source§

impl<R> From<SdkError<RejectCertificateTransferError, R>> for Error
where R: Send + Sync + Debug + 'static,

Source§

fn from(err: SdkError<RejectCertificateTransferError, R>) -> Self

Converts to this type from the input type.
Source§

impl<R> From<SdkError<RemoveThingFromBillingGroupError, R>> for Error
where R: Send + Sync + Debug + 'static,

Source§

fn from(err: SdkError<RemoveThingFromBillingGroupError, R>) -> Self

Converts to this type from the input type.
Source§

impl<R> From<SdkError<RemoveThingFromThingGroupError, R>> for Error
where R: Send + Sync + Debug + 'static,

Source§

fn from(err: SdkError<RemoveThingFromThingGroupError, R>) -> Self

Converts to this type from the input type.
Source§

impl<R> From<SdkError<ReplaceTopicRuleError, R>> for Error
where R: Send + Sync + Debug + 'static,

Source§

fn from(err: SdkError<ReplaceTopicRuleError, R>) -> Self

Converts to this type from the input type.
Source§

impl<R> From<SdkError<SearchIndexError, R>> for Error
where R: Send + Sync + Debug + 'static,

Source§

fn from(err: SdkError<SearchIndexError, R>) -> Self

Converts to this type from the input type.
Source§

impl<R> From<SdkError<SetDefaultAuthorizerError, R>> for Error
where R: Send + Sync + Debug + 'static,

Source§

fn from(err: SdkError<SetDefaultAuthorizerError, R>) -> Self

Converts to this type from the input type.
Source§

impl<R> From<SdkError<SetDefaultPolicyVersionError, R>> for Error
where R: Send + Sync + Debug + 'static,

Source§

fn from(err: SdkError<SetDefaultPolicyVersionError, R>) -> Self

Converts to this type from the input type.
Source§

impl<R> From<SdkError<SetLoggingOptionsError, R>> for Error
where R: Send + Sync + Debug + 'static,

Source§

fn from(err: SdkError<SetLoggingOptionsError, R>) -> Self

Converts to this type from the input type.
Source§

impl<R> From<SdkError<SetV2LoggingLevelError, R>> for Error
where R: Send + Sync + Debug + 'static,

Source§

fn from(err: SdkError<SetV2LoggingLevelError, R>) -> Self

Converts to this type from the input type.
Source§

impl<R> From<SdkError<SetV2LoggingOptionsError, R>> for Error
where R: Send + Sync + Debug + 'static,

Source§

fn from(err: SdkError<SetV2LoggingOptionsError, R>) -> Self

Converts to this type from the input type.
Source§

impl<R> From<SdkError<StartAuditMitigationActionsTaskError, R>> for Error
where R: Send + Sync + Debug + 'static,

Source§

fn from(err: SdkError<StartAuditMitigationActionsTaskError, R>) -> Self

Converts to this type from the input type.
Source§

impl<R> From<SdkError<StartDetectMitigationActionsTaskError, R>> for Error
where R: Send + Sync + Debug + 'static,

Source§

fn from(err: SdkError<StartDetectMitigationActionsTaskError, R>) -> Self

Converts to this type from the input type.
Source§

impl<R> From<SdkError<StartOnDemandAuditTaskError, R>> for Error
where R: Send + Sync + Debug + 'static,

Source§

fn from(err: SdkError<StartOnDemandAuditTaskError, R>) -> Self

Converts to this type from the input type.
Source§

impl<R> From<SdkError<StartThingRegistrationTaskError, R>> for Error
where R: Send + Sync + Debug + 'static,

Source§

fn from(err: SdkError<StartThingRegistrationTaskError, R>) -> Self

Converts to this type from the input type.
Source§

impl<R> From<SdkError<StopThingRegistrationTaskError, R>> for Error
where R: Send + Sync + Debug + 'static,

Source§

fn from(err: SdkError<StopThingRegistrationTaskError, R>) -> Self

Converts to this type from the input type.
Source§

impl<R> From<SdkError<TagResourceError, R>> for Error
where R: Send + Sync + Debug + 'static,

Source§

fn from(err: SdkError<TagResourceError, R>) -> Self

Converts to this type from the input type.
Source§

impl<R> From<SdkError<TestAuthorizationError, R>> for Error
where R: Send + Sync + Debug + 'static,

Source§

fn from(err: SdkError<TestAuthorizationError, R>) -> Self

Converts to this type from the input type.
Source§

impl<R> From<SdkError<TestInvokeAuthorizerError, R>> for Error
where R: Send + Sync + Debug + 'static,

Source§

fn from(err: SdkError<TestInvokeAuthorizerError, R>) -> Self

Converts to this type from the input type.
Source§

impl<R> From<SdkError<TransferCertificateError, R>> for Error
where R: Send + Sync + Debug + 'static,

Source§

fn from(err: SdkError<TransferCertificateError, R>) -> Self

Converts to this type from the input type.
Source§

impl<R> From<SdkError<UntagResourceError, R>> for Error
where R: Send + Sync + Debug + 'static,

Source§

fn from(err: SdkError<UntagResourceError, R>) -> Self

Converts to this type from the input type.
Source§

impl<R> From<SdkError<UpdateAccountAuditConfigurationError, R>> for Error
where R: Send + Sync + Debug + 'static,

Source§

fn from(err: SdkError<UpdateAccountAuditConfigurationError, R>) -> Self

Converts to this type from the input type.
Source§

impl<R> From<SdkError<UpdateAuditSuppressionError, R>> for Error
where R: Send + Sync + Debug + 'static,

Source§

fn from(err: SdkError<UpdateAuditSuppressionError, R>) -> Self

Converts to this type from the input type.
Source§

impl<R> From<SdkError<UpdateAuthorizerError, R>> for Error
where R: Send + Sync + Debug + 'static,

Source§

fn from(err: SdkError<UpdateAuthorizerError, R>) -> Self

Converts to this type from the input type.
Source§

impl<R> From<SdkError<UpdateBillingGroupError, R>> for Error
where R: Send + Sync + Debug + 'static,

Source§

fn from(err: SdkError<UpdateBillingGroupError, R>) -> Self

Converts to this type from the input type.
Source§

impl<R> From<SdkError<UpdateCACertificateError, R>> for Error
where R: Send + Sync + Debug + 'static,

Source§

fn from(err: SdkError<UpdateCACertificateError, R>) -> Self

Converts to this type from the input type.
Source§

impl<R> From<SdkError<UpdateCertificateError, R>> for Error
where R: Send + Sync + Debug + 'static,

Source§

fn from(err: SdkError<UpdateCertificateError, R>) -> Self

Converts to this type from the input type.
Source§

impl<R> From<SdkError<UpdateCertificateProviderError, R>> for Error
where R: Send + Sync + Debug + 'static,

Source§

fn from(err: SdkError<UpdateCertificateProviderError, R>) -> Self

Converts to this type from the input type.
Source§

impl<R> From<SdkError<UpdateCommandError, R>> for Error
where R: Send + Sync + Debug + 'static,

Source§

fn from(err: SdkError<UpdateCommandError, R>) -> Self

Converts to this type from the input type.
Source§

impl<R> From<SdkError<UpdateCustomMetricError, R>> for Error
where R: Send + Sync + Debug + 'static,

Source§

fn from(err: SdkError<UpdateCustomMetricError, R>) -> Self

Converts to this type from the input type.
Source§

impl<R> From<SdkError<UpdateDimensionError, R>> for Error
where R: Send + Sync + Debug + 'static,

Source§

fn from(err: SdkError<UpdateDimensionError, R>) -> Self

Converts to this type from the input type.
Source§

impl<R> From<SdkError<UpdateDomainConfigurationError, R>> for Error
where R: Send + Sync + Debug + 'static,

Source§

fn from(err: SdkError<UpdateDomainConfigurationError, R>) -> Self

Converts to this type from the input type.
Source§

impl<R> From<SdkError<UpdateDynamicThingGroupError, R>> for Error
where R: Send + Sync + Debug + 'static,

Source§

fn from(err: SdkError<UpdateDynamicThingGroupError, R>) -> Self

Converts to this type from the input type.
Source§

impl<R> From<SdkError<UpdateEventConfigurationsError, R>> for Error
where R: Send + Sync + Debug + 'static,

Source§

fn from(err: SdkError<UpdateEventConfigurationsError, R>) -> Self

Converts to this type from the input type.
Source§

impl<R> From<SdkError<UpdateFleetMetricError, R>> for Error
where R: Send + Sync + Debug + 'static,

Source§

fn from(err: SdkError<UpdateFleetMetricError, R>) -> Self

Converts to this type from the input type.
Source§

impl<R> From<SdkError<UpdateIndexingConfigurationError, R>> for Error
where R: Send + Sync + Debug + 'static,

Source§

fn from(err: SdkError<UpdateIndexingConfigurationError, R>) -> Self

Converts to this type from the input type.
Source§

impl<R> From<SdkError<UpdateJobError, R>> for Error
where R: Send + Sync + Debug + 'static,

Source§

fn from(err: SdkError<UpdateJobError, R>) -> Self

Converts to this type from the input type.
Source§

impl<R> From<SdkError<UpdateMitigationActionError, R>> for Error
where R: Send + Sync + Debug + 'static,

Source§

fn from(err: SdkError<UpdateMitigationActionError, R>) -> Self

Converts to this type from the input type.
Source§

impl<R> From<SdkError<UpdatePackageConfigurationError, R>> for Error
where R: Send + Sync + Debug + 'static,

Source§

fn from(err: SdkError<UpdatePackageConfigurationError, R>) -> Self

Converts to this type from the input type.
Source§

impl<R> From<SdkError<UpdatePackageError, R>> for Error
where R: Send + Sync + Debug + 'static,

Source§

fn from(err: SdkError<UpdatePackageError, R>) -> Self

Converts to this type from the input type.
Source§

impl<R> From<SdkError<UpdatePackageVersionError, R>> for Error
where R: Send + Sync + Debug + 'static,

Source§

fn from(err: SdkError<UpdatePackageVersionError, R>) -> Self

Converts to this type from the input type.
Source§

impl<R> From<SdkError<UpdateProvisioningTemplateError, R>> for Error
where R: Send + Sync + Debug + 'static,

Source§

fn from(err: SdkError<UpdateProvisioningTemplateError, R>) -> Self

Converts to this type from the input type.
Source§

impl<R> From<SdkError<UpdateRoleAliasError, R>> for Error
where R: Send + Sync + Debug + 'static,

Source§

fn from(err: SdkError<UpdateRoleAliasError, R>) -> Self

Converts to this type from the input type.
Source§

impl<R> From<SdkError<UpdateScheduledAuditError, R>> for Error
where R: Send + Sync + Debug + 'static,

Source§

fn from(err: SdkError<UpdateScheduledAuditError, R>) -> Self

Converts to this type from the input type.
Source§

impl<R> From<SdkError<UpdateSecurityProfileError, R>> for Error
where R: Send + Sync + Debug + 'static,

Source§

fn from(err: SdkError<UpdateSecurityProfileError, R>) -> Self

Converts to this type from the input type.
Source§

impl<R> From<SdkError<UpdateStreamError, R>> for Error
where R: Send + Sync + Debug + 'static,

Source§

fn from(err: SdkError<UpdateStreamError, R>) -> Self

Converts to this type from the input type.
Source§

impl<R> From<SdkError<UpdateThingError, R>> for Error
where R: Send + Sync + Debug + 'static,

Source§

fn from(err: SdkError<UpdateThingError, R>) -> Self

Converts to this type from the input type.
Source§

impl<R> From<SdkError<UpdateThingGroupError, R>> for Error
where R: Send + Sync + Debug + 'static,

Source§

fn from(err: SdkError<UpdateThingGroupError, R>) -> Self

Converts to this type from the input type.
Source§

impl<R> From<SdkError<UpdateThingGroupsForThingError, R>> for Error
where R: Send + Sync + Debug + 'static,

Source§

fn from(err: SdkError<UpdateThingGroupsForThingError, R>) -> Self

Converts to this type from the input type.
Source§

impl<R> From<SdkError<UpdateThingTypeError, R>> for Error
where R: Send + Sync + Debug + 'static,

Source§

fn from(err: SdkError<UpdateThingTypeError, R>) -> Self

Converts to this type from the input type.
Source§

impl<R> From<SdkError<UpdateTopicRuleDestinationError, R>> for Error
where R: Send + Sync + Debug + 'static,

Source§

fn from(err: SdkError<UpdateTopicRuleDestinationError, R>) -> Self

Converts to this type from the input type.
Source§

impl<R> From<SdkError<ValidateSecurityProfileBehaviorsError, R>> for Error
where R: Send + Sync + Debug + 'static,

Source§

fn from(err: SdkError<ValidateSecurityProfileBehaviorsError, R>) -> Self

Converts to this type from the input type.
Source§

impl From<SearchIndexError> for Error

Source§

fn from(err: SearchIndexError) -> Self

Converts to this type from the input type.
Source§

impl From<SetDefaultAuthorizerError> for Error

Source§

fn from(err: SetDefaultAuthorizerError) -> Self

Converts to this type from the input type.
Source§

impl From<SetDefaultPolicyVersionError> for Error

Source§

fn from(err: SetDefaultPolicyVersionError) -> Self

Converts to this type from the input type.
Source§

impl From<SetLoggingOptionsError> for Error

Source§

fn from(err: SetLoggingOptionsError) -> Self

Converts to this type from the input type.
Source§

impl From<SetV2LoggingLevelError> for Error

Source§

fn from(err: SetV2LoggingLevelError) -> Self

Converts to this type from the input type.
Source§

impl From<SetV2LoggingOptionsError> for Error

Source§

fn from(err: SetV2LoggingOptionsError) -> Self

Converts to this type from the input type.
Source§

impl From<StartAuditMitigationActionsTaskError> for Error

Source§

fn from(err: StartAuditMitigationActionsTaskError) -> Self

Converts to this type from the input type.
Source§

impl From<StartDetectMitigationActionsTaskError> for Error

Source§

fn from(err: StartDetectMitigationActionsTaskError) -> Self

Converts to this type from the input type.
Source§

impl From<StartOnDemandAuditTaskError> for Error

Source§

fn from(err: StartOnDemandAuditTaskError) -> Self

Converts to this type from the input type.
Source§

impl From<StartThingRegistrationTaskError> for Error

Source§

fn from(err: StartThingRegistrationTaskError) -> Self

Converts to this type from the input type.
Source§

impl From<StopThingRegistrationTaskError> for Error

Source§

fn from(err: StopThingRegistrationTaskError) -> Self

Converts to this type from the input type.
Source§

impl From<TagResourceError> for Error

Source§

fn from(err: TagResourceError) -> Self

Converts to this type from the input type.
Source§

impl From<TestAuthorizationError> for Error

Source§

fn from(err: TestAuthorizationError) -> Self

Converts to this type from the input type.
Source§

impl From<TestInvokeAuthorizerError> for Error

Source§

fn from(err: TestInvokeAuthorizerError) -> Self

Converts to this type from the input type.
Source§

impl From<TransferCertificateError> for Error

Source§

fn from(err: TransferCertificateError) -> Self

Converts to this type from the input type.
Source§

impl From<UntagResourceError> for Error

Source§

fn from(err: UntagResourceError) -> Self

Converts to this type from the input type.
Source§

impl From<UpdateAccountAuditConfigurationError> for Error

Source§

fn from(err: UpdateAccountAuditConfigurationError) -> Self

Converts to this type from the input type.
Source§

impl From<UpdateAuditSuppressionError> for Error

Source§

fn from(err: UpdateAuditSuppressionError) -> Self

Converts to this type from the input type.
Source§

impl From<UpdateAuthorizerError> for Error

Source§

fn from(err: UpdateAuthorizerError) -> Self

Converts to this type from the input type.
Source§

impl From<UpdateBillingGroupError> for Error

Source§

fn from(err: UpdateBillingGroupError) -> Self

Converts to this type from the input type.
Source§

impl From<UpdateCACertificateError> for Error

Source§

fn from(err: UpdateCACertificateError) -> Self

Converts to this type from the input type.
Source§

impl From<UpdateCertificateError> for Error

Source§

fn from(err: UpdateCertificateError) -> Self

Converts to this type from the input type.
Source§

impl From<UpdateCertificateProviderError> for Error

Source§

fn from(err: UpdateCertificateProviderError) -> Self

Converts to this type from the input type.
Source§

impl From<UpdateCommandError> for Error

Source§

fn from(err: UpdateCommandError) -> Self

Converts to this type from the input type.
Source§

impl From<UpdateCustomMetricError> for Error

Source§

fn from(err: UpdateCustomMetricError) -> Self

Converts to this type from the input type.
Source§

impl From<UpdateDimensionError> for Error

Source§

fn from(err: UpdateDimensionError) -> Self

Converts to this type from the input type.
Source§

impl From<UpdateDomainConfigurationError> for Error

Source§

fn from(err: UpdateDomainConfigurationError) -> Self

Converts to this type from the input type.
Source§

impl From<UpdateDynamicThingGroupError> for Error

Source§

fn from(err: UpdateDynamicThingGroupError) -> Self

Converts to this type from the input type.
Source§

impl From<UpdateEventConfigurationsError> for Error

Source§

fn from(err: UpdateEventConfigurationsError) -> Self

Converts to this type from the input type.
Source§

impl From<UpdateFleetMetricError> for Error

Source§

fn from(err: UpdateFleetMetricError) -> Self

Converts to this type from the input type.
Source§

impl From<UpdateIndexingConfigurationError> for Error

Source§

fn from(err: UpdateIndexingConfigurationError) -> Self

Converts to this type from the input type.
Source§

impl From<UpdateJobError> for Error

Source§

fn from(err: UpdateJobError) -> Self

Converts to this type from the input type.
Source§

impl From<UpdateMitigationActionError> for Error

Source§

fn from(err: UpdateMitigationActionError) -> Self

Converts to this type from the input type.
Source§

impl From<UpdatePackageConfigurationError> for Error

Source§

fn from(err: UpdatePackageConfigurationError) -> Self

Converts to this type from the input type.
Source§

impl From<UpdatePackageError> for Error

Source§

fn from(err: UpdatePackageError) -> Self

Converts to this type from the input type.
Source§

impl From<UpdatePackageVersionError> for Error

Source§

fn from(err: UpdatePackageVersionError) -> Self

Converts to this type from the input type.
Source§

impl From<UpdateProvisioningTemplateError> for Error

Source§

fn from(err: UpdateProvisioningTemplateError) -> Self

Converts to this type from the input type.
Source§

impl From<UpdateRoleAliasError> for Error

Source§

fn from(err: UpdateRoleAliasError) -> Self

Converts to this type from the input type.
Source§

impl From<UpdateScheduledAuditError> for Error

Source§

fn from(err: UpdateScheduledAuditError) -> Self

Converts to this type from the input type.
Source§

impl From<UpdateSecurityProfileError> for Error

Source§

fn from(err: UpdateSecurityProfileError) -> Self

Converts to this type from the input type.
Source§

impl From<UpdateStreamError> for Error

Source§

fn from(err: UpdateStreamError) -> Self

Converts to this type from the input type.
Source§

impl From<UpdateThingError> for Error

Source§

fn from(err: UpdateThingError) -> Self

Converts to this type from the input type.
Source§

impl From<UpdateThingGroupError> for Error

Source§

fn from(err: UpdateThingGroupError) -> Self

Converts to this type from the input type.
Source§

impl From<UpdateThingGroupsForThingError> for Error

Source§

fn from(err: UpdateThingGroupsForThingError) -> Self

Converts to this type from the input type.
Source§

impl From<UpdateThingTypeError> for Error

Source§

fn from(err: UpdateThingTypeError) -> Self

Converts to this type from the input type.
Source§

impl From<UpdateTopicRuleDestinationError> for Error

Source§

fn from(err: UpdateTopicRuleDestinationError) -> Self

Converts to this type from the input type.
Source§

impl From<ValidateSecurityProfileBehaviorsError> for Error

Source§

fn from(err: ValidateSecurityProfileBehaviorsError) -> Self

Converts to this type from the input type.
Source§

impl ProvideErrorMetadata for Error

Source§

fn meta(&self) -> &ErrorMetadata

Returns error metadata, which includes the error code, message, request ID, and potentially additional information.
Source§

fn code(&self) -> Option<&str>

Returns the error code if it’s available.
Source§

fn message(&self) -> Option<&str>

Returns the error message, if there is one.
Source§

impl RequestId for Error

Source§

fn request_id(&self) -> Option<&str>

Returns the request ID, or None if the service could not be reached.

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> Any for T
where T: 'static + ?Sized,

Source§

fn type_id(&self) -> TypeId

Gets the TypeId of self. Read more
Source§

impl<T> Borrow<T> for T
where T: ?Sized,

Source§

fn borrow(&self) -> &T

Immutably borrows from an owned value. Read more
Source§

impl<T> BorrowMut<T> for T
where T: ?Sized,

Source§

fn borrow_mut(&mut self) -> &mut T

Mutably borrows from an owned value. Read more
Source§

impl<T> From<T> for T

Source§

fn from(t: T) -> T

Returns the argument unchanged.

Source§

impl<T> Instrument for T

Source§

fn instrument(self, span: Span) -> Instrumented<Self>

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

fn in_current_span(self) -> Instrumented<Self>

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

impl<T, U> Into<U> for T
where U: From<T>,

Source§

fn into(self) -> U

Calls U::from(self).

That is, this conversion is whatever the implementation of From<T> for U chooses to do.

Source§

impl<T> IntoEither for T

Source§

fn into_either(self, into_left: bool) -> Either<Self, Self>

Converts 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 more
Source§

fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
where F: FnOnce(&Self) -> bool,

Converts 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 more
Source§

impl<Unshared, Shared> IntoShared<Shared> for Unshared
where Shared: FromUnshared<Unshared>,

Source§

fn into_shared(self) -> Shared

Creates a shared type from an unshared type.
Source§

impl<T> Paint for T
where T: ?Sized,

Source§

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 primary(&self) -> Painted<&T>

Returns self with the fg() set to [Color :: Primary].

§Example
println!("{}", value.primary());
Source§

fn fixed(&self, color: u8) -> Painted<&T>

Returns self with the fg() set to [Color :: Fixed].

§Example
println!("{}", value.fixed(color));
Source§

fn rgb(&self, r: u8, g: u8, b: u8) -> Painted<&T>

Returns self with the fg() set to [Color :: Rgb].

§Example
println!("{}", value.rgb(r, g, b));
Source§

fn black(&self) -> Painted<&T>

Returns self with the fg() set to [Color :: Black].

§Example
println!("{}", value.black());
Source§

fn red(&self) -> Painted<&T>

Returns self with the fg() set to [Color :: Red].

§Example
println!("{}", value.red());
Source§

fn green(&self) -> Painted<&T>

Returns self with the fg() set to [Color :: Green].

§Example
println!("{}", value.green());
Source§

fn yellow(&self) -> Painted<&T>

Returns self with the fg() set to [Color :: Yellow].

§Example
println!("{}", value.yellow());
Source§

fn blue(&self) -> Painted<&T>

Returns self with the fg() set to [Color :: Blue].

§Example
println!("{}", value.blue());
Source§

fn magenta(&self) -> Painted<&T>

Returns self with the fg() set to [Color :: Magenta].

§Example
println!("{}", value.magenta());
Source§

fn cyan(&self) -> Painted<&T>

Returns self with the fg() set to [Color :: Cyan].

§Example
println!("{}", value.cyan());
Source§

fn white(&self) -> Painted<&T>

Returns self with the fg() set to [Color :: White].

§Example
println!("{}", value.white());
Source§

fn bright_black(&self) -> Painted<&T>

Returns self with the fg() set to [Color :: BrightBlack].

§Example
println!("{}", value.bright_black());
Source§

fn bright_red(&self) -> Painted<&T>

Returns self with the fg() set to [Color :: BrightRed].

§Example
println!("{}", value.bright_red());
Source§

fn bright_green(&self) -> Painted<&T>

Returns self with the fg() set to [Color :: BrightGreen].

§Example
println!("{}", value.bright_green());
Source§

fn bright_yellow(&self) -> Painted<&T>

Returns self with the fg() set to [Color :: BrightYellow].

§Example
println!("{}", value.bright_yellow());
Source§

fn bright_blue(&self) -> Painted<&T>

Returns self with the fg() set to [Color :: BrightBlue].

§Example
println!("{}", value.bright_blue());
Source§

fn bright_magenta(&self) -> Painted<&T>

Returns self with the fg() set to [Color :: BrightMagenta].

§Example
println!("{}", value.bright_magenta());
Source§

fn bright_cyan(&self) -> Painted<&T>

Returns self with the fg() set to [Color :: BrightCyan].

§Example
println!("{}", value.bright_cyan());
Source§

fn bright_white(&self) -> Painted<&T>

Returns self with the fg() set to [Color :: BrightWhite].

§Example
println!("{}", value.bright_white());
Source§

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>

Returns self with the bg() set to [Color :: Primary].

§Example
println!("{}", value.on_primary());
Source§

fn on_fixed(&self, color: u8) -> Painted<&T>

Returns self with the bg() set to [Color :: Fixed].

§Example
println!("{}", value.on_fixed(color));
Source§

fn on_rgb(&self, r: u8, g: u8, b: u8) -> Painted<&T>

Returns self with the bg() set to [Color :: Rgb].

§Example
println!("{}", value.on_rgb(r, g, b));
Source§

fn on_black(&self) -> Painted<&T>

Returns self with the bg() set to [Color :: Black].

§Example
println!("{}", value.on_black());
Source§

fn on_red(&self) -> Painted<&T>

Returns self with the bg() set to [Color :: Red].

§Example
println!("{}", value.on_red());
Source§

fn on_green(&self) -> Painted<&T>

Returns self with the bg() set to [Color :: Green].

§Example
println!("{}", value.on_green());
Source§

fn on_yellow(&self) -> Painted<&T>

Returns self with the bg() set to [Color :: Yellow].

§Example
println!("{}", value.on_yellow());
Source§

fn on_blue(&self) -> Painted<&T>

Returns self with the bg() set to [Color :: Blue].

§Example
println!("{}", value.on_blue());
Source§

fn on_magenta(&self) -> Painted<&T>

Returns self with the bg() set to [Color :: Magenta].

§Example
println!("{}", value.on_magenta());
Source§

fn on_cyan(&self) -> Painted<&T>

Returns self with the bg() set to [Color :: Cyan].

§Example
println!("{}", value.on_cyan());
Source§

fn on_white(&self) -> Painted<&T>

Returns self with the bg() set to [Color :: White].

§Example
println!("{}", value.on_white());
Source§

fn on_bright_black(&self) -> Painted<&T>

Returns self with the bg() set to [Color :: BrightBlack].

§Example
println!("{}", value.on_bright_black());
Source§

fn on_bright_red(&self) -> Painted<&T>

Returns self with the bg() set to [Color :: BrightRed].

§Example
println!("{}", value.on_bright_red());
Source§

fn on_bright_green(&self) -> Painted<&T>

Returns self with the bg() set to [Color :: BrightGreen].

§Example
println!("{}", value.on_bright_green());
Source§

fn on_bright_yellow(&self) -> Painted<&T>

Returns self with the bg() set to [Color :: BrightYellow].

§Example
println!("{}", value.on_bright_yellow());
Source§

fn on_bright_blue(&self) -> Painted<&T>

Returns self with the bg() set to [Color :: BrightBlue].

§Example
println!("{}", value.on_bright_blue());
Source§

fn on_bright_magenta(&self) -> Painted<&T>

Returns self with the bg() set to [Color :: BrightMagenta].

§Example
println!("{}", value.on_bright_magenta());
Source§

fn on_bright_cyan(&self) -> Painted<&T>

Returns self with the bg() set to [Color :: BrightCyan].

§Example
println!("{}", value.on_bright_cyan());
Source§

fn on_bright_white(&self) -> Painted<&T>

Returns self with the bg() set to [Color :: BrightWhite].

§Example
println!("{}", value.on_bright_white());
Source§

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 bold(&self) -> Painted<&T>

Returns self with the attr() set to [Attribute :: Bold].

§Example
println!("{}", value.bold());
Source§

fn dim(&self) -> Painted<&T>

Returns self with the attr() set to [Attribute :: Dim].

§Example
println!("{}", value.dim());
Source§

fn italic(&self) -> Painted<&T>

Returns self with the attr() set to [Attribute :: Italic].

§Example
println!("{}", value.italic());
Source§

fn underline(&self) -> Painted<&T>

Returns self with the attr() set to [Attribute :: Underline].

§Example
println!("{}", value.underline());

Returns self with the attr() set to [Attribute :: Blink].

§Example
println!("{}", value.blink());

Returns self with the attr() set to [Attribute :: RapidBlink].

§Example
println!("{}", value.rapid_blink());
Source§

fn invert(&self) -> Painted<&T>

Returns self with the attr() set to [Attribute :: Invert].

§Example
println!("{}", value.invert());
Source§

fn conceal(&self) -> Painted<&T>

Returns self with the attr() set to [Attribute :: Conceal].

§Example
println!("{}", value.conceal());
Source§

fn strike(&self) -> Painted<&T>

Returns self with the attr() set to [Attribute :: Strike].

§Example
println!("{}", value.strike());
Source§

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 mask(&self) -> Painted<&T>

Returns self with the quirk() set to [Quirk :: Mask].

§Example
println!("{}", value.mask());
Source§

fn wrap(&self) -> Painted<&T>

Returns self with the quirk() set to [Quirk :: Wrap].

§Example
println!("{}", value.wrap());
Source§

fn linger(&self) -> Painted<&T>

Returns self with the quirk() set to [Quirk :: Linger].

§Example
println!("{}", value.linger());
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.

Returns self with the quirk() set to [Quirk :: Clear].

§Example
println!("{}", value.clear());
Source§

fn resetting(&self) -> Painted<&T>

Returns self with the quirk() set to [Quirk :: Resetting].

§Example
println!("{}", value.resetting());
Source§

fn bright(&self) -> Painted<&T>

Returns self with the quirk() set to [Quirk :: Bright].

§Example
println!("{}", value.bright());
Source§

fn on_bright(&self) -> Painted<&T>

Returns self with the quirk() set to [Quirk :: OnBright].

§Example
println!("{}", value.on_bright());
Source§

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);
Source§

fn new(self) -> Painted<Self>
where Self: Sized,

Create a new Painted with a default Style. Read more
Source§

fn paint<S>(&self, style: S) -> Painted<&Self>
where S: Into<Style>,

Apply a style wholesale to self. Any previous style is replaced. Read more
Source§

impl<T> Same for T

Source§

type Output = T

Should always be Self
Source§

impl<T> ToString for T
where T: Display + ?Sized,

Source§

fn to_string(&self) -> String

Converts the given value to a String. Read more
Source§

impl<T, U> TryFrom<U> for T
where U: Into<T>,

Source§

type Error = Infallible

The type returned in the event of a conversion error.
Source§

fn try_from(value: U) -> Result<T, <T as TryFrom<U>>::Error>

Performs the conversion.
Source§

impl<T, U> TryInto<U> for T
where U: TryFrom<T>,

Source§

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.
Source§

fn try_into(self) -> Result<U, <U as TryFrom<T>>::Error>

Performs the conversion.
Source§

impl<T> WithSubscriber for T

Source§

fn with_subscriber<S>(self, subscriber: S) -> WithDispatch<Self>
where S: Into<Dispatch>,

Attaches the provided Subscriber to this type, returning a WithDispatch wrapper. Read more
Source§

fn with_current_subscriber(self) -> WithDispatch<Self>

Attaches the current default Subscriber to this type, returning a WithDispatch wrapper. Read more
Source§

impl<T> ErasedDestructor for T
where T: 'static,