pub enum CreateFieldLevelEncryptionConfigError {
FieldLevelEncryptionConfigAlreadyExists(String),
InconsistentQuantities(String),
InvalidArgument(String),
NoSuchFieldLevelEncryptionProfile(String),
QueryArgProfileEmpty(String),
TooManyFieldLevelEncryptionConfigs(String),
TooManyFieldLevelEncryptionContentTypeProfiles(String),
TooManyFieldLevelEncryptionQueryArgProfiles(String),
}
Expand description
Errors returned by CreateFieldLevelEncryptionConfig
Variants§
FieldLevelEncryptionConfigAlreadyExists(String)
The specified configuration for field-level encryption already exists.
InconsistentQuantities(String)
The value of Quantity
and the size of Items
don't match.
InvalidArgument(String)
An argument is invalid.
NoSuchFieldLevelEncryptionProfile(String)
The specified profile for field-level encryption doesn't exist.
QueryArgProfileEmpty(String)
No profile specified for the field-level encryption query argument.
TooManyFieldLevelEncryptionConfigs(String)
The maximum number of configurations for field-level encryption have been created.
TooManyFieldLevelEncryptionContentTypeProfiles(String)
The maximum number of content type profiles for field-level encryption have been created.
TooManyFieldLevelEncryptionQueryArgProfiles(String)
The maximum number of query arg profiles for field-level encryption have been created.
Implementations§
Trait Implementations§
Source§impl Error for CreateFieldLevelEncryptionConfigError
impl Error for CreateFieldLevelEncryptionConfigError
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 CreateFieldLevelEncryptionConfigError
impl PartialEq for CreateFieldLevelEncryptionConfigError
Source§fn eq(&self, other: &CreateFieldLevelEncryptionConfigError) -> bool
fn eq(&self, other: &CreateFieldLevelEncryptionConfigError) -> bool
Tests for
self
and other
values to be equal, and is used by ==
.impl StructuralPartialEq for CreateFieldLevelEncryptionConfigError
Auto Trait Implementations§
impl Freeze for CreateFieldLevelEncryptionConfigError
impl RefUnwindSafe for CreateFieldLevelEncryptionConfigError
impl Send for CreateFieldLevelEncryptionConfigError
impl Sync for CreateFieldLevelEncryptionConfigError
impl Unpin for CreateFieldLevelEncryptionConfigError
impl UnwindSafe for CreateFieldLevelEncryptionConfigError
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