#[non_exhaustive]pub struct FieldLevelEncryptionConfig { /* private fields */ }
Expand description
A complex data type that includes the profile configurations specified for field-level encryption.
Implementations
sourceimpl FieldLevelEncryptionConfig
impl FieldLevelEncryptionConfig
sourcepub fn caller_reference(&self) -> Option<&str>
pub fn caller_reference(&self) -> Option<&str>
A unique number that ensures the request can't be replayed.
sourcepub fn comment(&self) -> Option<&str>
pub fn comment(&self) -> Option<&str>
An optional comment about the configuration. The comment cannot be longer than 128 characters.
sourcepub fn query_arg_profile_config(&self) -> Option<&QueryArgProfileConfig>
pub fn query_arg_profile_config(&self) -> Option<&QueryArgProfileConfig>
A complex data type that specifies when to forward content if a profile isn't found and the profile that can be provided as a query argument in a request.
sourcepub fn content_type_profile_config(&self) -> Option<&ContentTypeProfileConfig>
pub fn content_type_profile_config(&self) -> Option<&ContentTypeProfileConfig>
A complex data type that specifies when to forward content if a content type isn't recognized and profiles to use as by default in a request if a query argument doesn't specify a profile to use.
sourceimpl FieldLevelEncryptionConfig
impl FieldLevelEncryptionConfig
sourcepub fn builder() -> Builder
pub fn builder() -> Builder
Creates a new builder-style object to manufacture FieldLevelEncryptionConfig
.
Trait Implementations
sourceimpl Clone for FieldLevelEncryptionConfig
impl Clone for FieldLevelEncryptionConfig
sourcefn clone(&self) -> FieldLevelEncryptionConfig
fn clone(&self) -> FieldLevelEncryptionConfig
Returns a copy of the value. Read more
1.0.0 · sourcefn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source
. Read moresourceimpl Debug for FieldLevelEncryptionConfig
impl Debug for FieldLevelEncryptionConfig
sourceimpl PartialEq<FieldLevelEncryptionConfig> for FieldLevelEncryptionConfig
impl PartialEq<FieldLevelEncryptionConfig> for FieldLevelEncryptionConfig
sourcefn eq(&self, other: &FieldLevelEncryptionConfig) -> bool
fn eq(&self, other: &FieldLevelEncryptionConfig) -> bool
impl StructuralPartialEq for FieldLevelEncryptionConfig
Auto Trait Implementations
impl RefUnwindSafe for FieldLevelEncryptionConfig
impl Send for FieldLevelEncryptionConfig
impl Sync for FieldLevelEncryptionConfig
impl Unpin for FieldLevelEncryptionConfig
impl UnwindSafe for FieldLevelEncryptionConfig
Blanket Implementations
sourceimpl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
const: unstable · sourcefn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more