#[non_exhaustive]pub struct ListCmekConfigsResponse {
pub cmek_configs: Vec<CmekConfig>,
/* private fields */
}Available on crate feature
cmek-config-service only.Expand description
Response message for CmekConfigService.ListCmekConfigs method.
Fields (Non-exhaustive)§
This struct is marked as non-exhaustive
Non-exhaustive structs could have additional fields added in future. Therefore, non-exhaustive structs cannot be constructed in external crates using the traditional
Struct { .. } syntax; cannot be matched against without a wildcard ..; and struct update syntax will not work.cmek_configs: Vec<CmekConfig>All the customer’s CmekConfigs.
Implementations§
Source§impl ListCmekConfigsResponse
impl ListCmekConfigsResponse
pub fn new() -> Self
Sourcepub fn set_cmek_configs<T, V>(self, v: T) -> Self
pub fn set_cmek_configs<T, V>(self, v: T) -> Self
Sets the value of cmek_configs.
§Example
ⓘ
use google_cloud_discoveryengine_v1::model::CmekConfig;
let x = ListCmekConfigsResponse::new()
.set_cmek_configs([
CmekConfig::default()/* use setters */,
CmekConfig::default()/* use (different) setters */,
]);Trait Implementations§
Source§impl Clone for ListCmekConfigsResponse
impl Clone for ListCmekConfigsResponse
Source§fn clone(&self) -> ListCmekConfigsResponse
fn clone(&self) -> ListCmekConfigsResponse
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 Debug for ListCmekConfigsResponse
impl Debug for ListCmekConfigsResponse
Source§impl Default for ListCmekConfigsResponse
impl Default for ListCmekConfigsResponse
Source§fn default() -> ListCmekConfigsResponse
fn default() -> ListCmekConfigsResponse
Returns the “default value” for a type. Read more
Source§impl Message for ListCmekConfigsResponse
impl Message for ListCmekConfigsResponse
Source§impl PartialEq for ListCmekConfigsResponse
impl PartialEq for ListCmekConfigsResponse
impl StructuralPartialEq for ListCmekConfigsResponse
Auto Trait Implementations§
impl Freeze for ListCmekConfigsResponse
impl RefUnwindSafe for ListCmekConfigsResponse
impl Send for ListCmekConfigsResponse
impl Sync for ListCmekConfigsResponse
impl Unpin for ListCmekConfigsResponse
impl UnwindSafe for ListCmekConfigsResponse
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