pub struct FieldLevelEncryptionList {
pub items: Option<Vec<FieldLevelEncryptionSummary>>,
pub max_items: i64,
pub next_marker: Option<String>,
pub quantity: i64,
}
Expand description
List of field-level encrpytion configurations.
Fields§
§items: Option<Vec<FieldLevelEncryptionSummary>>
An array of field-level encryption items.
max_items: i64
The maximum number of elements you want in the response body.
next_marker: Option<String>
If there are more elements to be listed, this element is present and contains the value that you can use for the Marker
request parameter to continue listing your configurations where you left off.
quantity: i64
The number of field-level encryption items.
Trait Implementations§
Source§impl Clone for FieldLevelEncryptionList
impl Clone for FieldLevelEncryptionList
Source§fn clone(&self) -> FieldLevelEncryptionList
fn clone(&self) -> FieldLevelEncryptionList
Returns a copy of the value. Read more
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source
. Read moreSource§impl Debug for FieldLevelEncryptionList
impl Debug for FieldLevelEncryptionList
Source§impl Default for FieldLevelEncryptionList
impl Default for FieldLevelEncryptionList
Source§fn default() -> FieldLevelEncryptionList
fn default() -> FieldLevelEncryptionList
Returns the “default value” for a type. Read more
Source§impl PartialEq for FieldLevelEncryptionList
impl PartialEq for FieldLevelEncryptionList
impl StructuralPartialEq for FieldLevelEncryptionList
Auto Trait Implementations§
impl Freeze for FieldLevelEncryptionList
impl RefUnwindSafe for FieldLevelEncryptionList
impl Send for FieldLevelEncryptionList
impl Sync for FieldLevelEncryptionList
impl Unpin for FieldLevelEncryptionList
impl UnwindSafe for FieldLevelEncryptionList
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