#[non_exhaustive]pub enum CreatePublicKeyError {
InvalidArgument(InvalidArgument),
PublicKeyAlreadyExists(PublicKeyAlreadyExists),
TooManyPublicKeys(TooManyPublicKeys),
Unhandled(Unhandled),
}
Expand description
Error type for the CreatePublicKeyError
operation.
Variants (Non-exhaustive)§
This enum is marked as non-exhaustive
InvalidArgument(InvalidArgument)
An argument is invalid.
PublicKeyAlreadyExists(PublicKeyAlreadyExists)
The specified public key already exists.
TooManyPublicKeys(TooManyPublicKeys)
The maximum number of public keys for field-level encryption have been created. To create a new public key, delete one of the existing keys.
Unhandled(Unhandled)
Unhandled
directly is not forwards compatible. Instead, match using a variable wildcard pattern and check .code()
:
err if err.code() == Some("SpecificExceptionCode") => { /* handle the error */ }
See ProvideErrorMetadata
for what information is available for the error.An unexpected error occurred (e.g., invalid JSON returned by the service or an unknown error code).
Implementations§
source§impl CreatePublicKeyError
impl CreatePublicKeyError
sourcepub fn unhandled(err: impl Into<Box<dyn Error + Send + Sync + 'static>>) -> Self
pub fn unhandled(err: impl Into<Box<dyn Error + Send + Sync + 'static>>) -> Self
Creates the CreatePublicKeyError::Unhandled
variant from any error type.
sourcepub fn generic(err: ErrorMetadata) -> Self
pub fn generic(err: ErrorMetadata) -> Self
Creates the CreatePublicKeyError::Unhandled
variant from an ErrorMetadata
.
sourcepub fn meta(&self) -> &ErrorMetadata
pub fn meta(&self) -> &ErrorMetadata
Returns error metadata, which includes the error code, message, request ID, and potentially additional information.
sourcepub fn is_invalid_argument(&self) -> bool
pub fn is_invalid_argument(&self) -> bool
Returns true
if the error kind is CreatePublicKeyError::InvalidArgument
.
sourcepub fn is_public_key_already_exists(&self) -> bool
pub fn is_public_key_already_exists(&self) -> bool
Returns true
if the error kind is CreatePublicKeyError::PublicKeyAlreadyExists
.
sourcepub fn is_too_many_public_keys(&self) -> bool
pub fn is_too_many_public_keys(&self) -> bool
Returns true
if the error kind is CreatePublicKeyError::TooManyPublicKeys
.
Trait Implementations§
source§impl CreateUnhandledError for CreatePublicKeyError
impl CreateUnhandledError for CreatePublicKeyError
source§fn create_unhandled_error(
source: Box<dyn Error + Send + Sync + 'static>,
meta: Option<ErrorMetadata>
) -> Self
fn create_unhandled_error( source: Box<dyn Error + Send + Sync + 'static>, meta: Option<ErrorMetadata> ) -> Self
source
and error metadata.source§impl Debug for CreatePublicKeyError
impl Debug for CreatePublicKeyError
source§impl Display for CreatePublicKeyError
impl Display for CreatePublicKeyError
source§impl Error for CreatePublicKeyError
impl Error for CreatePublicKeyError
source§fn source(&self) -> Option<&(dyn Error + 'static)>
fn source(&self) -> Option<&(dyn Error + 'static)>
1.0.0 · source§fn description(&self) -> &str
fn description(&self) -> &str
source§impl From<CreatePublicKeyError> for Error
impl From<CreatePublicKeyError> for Error
source§fn from(err: CreatePublicKeyError) -> Self
fn from(err: CreatePublicKeyError) -> Self
source§impl ProvideErrorMetadata for CreatePublicKeyError
impl ProvideErrorMetadata for CreatePublicKeyError
source§fn meta(&self) -> &ErrorMetadata
fn meta(&self) -> &ErrorMetadata
source§impl RequestId for CreatePublicKeyError
impl RequestId for CreatePublicKeyError
source§fn request_id(&self) -> Option<&str>
fn request_id(&self) -> Option<&str>
None
if the service could not be reached.