pub enum CreateFieldLevelEncryptionProfileError {
FieldLevelEncryptionProfileAlreadyExists(String),
FieldLevelEncryptionProfileSizeExceeded(String),
InconsistentQuantities(String),
InvalidArgument(String),
NoSuchPublicKey(String),
TooManyFieldLevelEncryptionEncryptionEntities(String),
TooManyFieldLevelEncryptionFieldPatterns(String),
TooManyFieldLevelEncryptionProfiles(String),
}
Expand description
Errors returned by CreateFieldLevelEncryptionProfile
Variants§
FieldLevelEncryptionProfileAlreadyExists(String)
The specified profile for field-level encryption already exists.
FieldLevelEncryptionProfileSizeExceeded(String)
The maximum size of a profile for field-level encryption was exceeded.
InconsistentQuantities(String)
The value of Quantity
and the size of Items
don't match.
InvalidArgument(String)
An argument is invalid.
NoSuchPublicKey(String)
The specified public key doesn't exist.
TooManyFieldLevelEncryptionEncryptionEntities(String)
The maximum number of encryption entities for field-level encryption have been created.
TooManyFieldLevelEncryptionFieldPatterns(String)
The maximum number of field patterns for field-level encryption have been created.
TooManyFieldLevelEncryptionProfiles(String)
The maximum number of profiles for field-level encryption have been created.
Implementations§
Trait Implementations§
Source§impl Error for CreateFieldLevelEncryptionProfileError
impl Error for CreateFieldLevelEncryptionProfileError
1.30.0 · Source§fn source(&self) -> Option<&(dyn Error + 'static)>
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
fn description(&self) -> &str
👎Deprecated since 1.42.0: use the Display impl or to_string()
Source§impl PartialEq for CreateFieldLevelEncryptionProfileError
impl PartialEq for CreateFieldLevelEncryptionProfileError
Source§fn eq(&self, other: &CreateFieldLevelEncryptionProfileError) -> bool
fn eq(&self, other: &CreateFieldLevelEncryptionProfileError) -> bool
Tests for
self
and other
values to be equal, and is used by ==
.impl StructuralPartialEq for CreateFieldLevelEncryptionProfileError
Auto Trait Implementations§
impl Freeze for CreateFieldLevelEncryptionProfileError
impl RefUnwindSafe for CreateFieldLevelEncryptionProfileError
impl Send for CreateFieldLevelEncryptionProfileError
impl Sync for CreateFieldLevelEncryptionProfileError
impl Unpin for CreateFieldLevelEncryptionProfileError
impl UnwindSafe for CreateFieldLevelEncryptionProfileError
Blanket Implementations§
Source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
Source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more