#[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 more
sourceimpl 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
This method tests for self and other values to be equal, and is used
by ==. Read more
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 T where
T: ?Sized,
impl<T> BorrowMut<T> for T where
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
sourceimpl<T> Instrument for T
impl<T> Instrument for T
sourcefn instrument(self, span: Span) -> Instrumented<Self>
fn instrument(self, span: Span) -> Instrumented<Self>
sourcefn in_current_span(self) -> Instrumented<Self>
fn in_current_span(self) -> Instrumented<Self>
sourceimpl<T> WithSubscriber for T
impl<T> WithSubscriber for T
sourcefn with_subscriber<S>(self, subscriber: S) -> WithDispatch<Self> where
S: Into<Dispatch>,
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
sourcefn with_current_subscriber(self) -> WithDispatch<Self>
fn with_current_subscriber(self) -> WithDispatch<Self>
Attaches the current default Subscriber to this type, returning a
WithDispatch wrapper. Read more