pub struct FieldLevelEncryptionProfileList {
pub items: Option<Vec<FieldLevelEncryptionProfileSummary>>,
pub max_items: i64,
pub next_marker: Option<String>,
pub quantity: i64,
}
Expand description
List of field-level encryption profiles.
Fields§
§items: Option<Vec<FieldLevelEncryptionProfileSummary>>
The field-level encryption profile items.
max_items: i64
The maximum number of field-level encryption profiles 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 profiles where you left off.
quantity: i64
The number of field-level encryption profiles.
Trait Implementations§
Source§impl Clone for FieldLevelEncryptionProfileList
impl Clone for FieldLevelEncryptionProfileList
Source§fn clone(&self) -> FieldLevelEncryptionProfileList
fn clone(&self) -> FieldLevelEncryptionProfileList
Returns a duplicate 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 Default for FieldLevelEncryptionProfileList
impl Default for FieldLevelEncryptionProfileList
Source§fn default() -> FieldLevelEncryptionProfileList
fn default() -> FieldLevelEncryptionProfileList
Returns the “default value” for a type. Read more
Source§impl PartialEq for FieldLevelEncryptionProfileList
impl PartialEq for FieldLevelEncryptionProfileList
Source§fn eq(&self, other: &FieldLevelEncryptionProfileList) -> bool
fn eq(&self, other: &FieldLevelEncryptionProfileList) -> bool
Tests for
self
and other
values to be equal, and is used by ==
.impl StructuralPartialEq for FieldLevelEncryptionProfileList
Auto Trait Implementations§
impl Freeze for FieldLevelEncryptionProfileList
impl RefUnwindSafe for FieldLevelEncryptionProfileList
impl Send for FieldLevelEncryptionProfileList
impl Sync for FieldLevelEncryptionProfileList
impl Unpin for FieldLevelEncryptionProfileList
impl UnwindSafe for FieldLevelEncryptionProfileList
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