#[non_exhaustive]pub struct ShowEffectiveAutokeyConfigRequest {
pub parent: String,
/* private fields */
}Expand description
Request message for ShowEffectiveAutokeyConfig.
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.parent: StringRequired. Name of the resource project to the show effective Cloud KMS Autokey configuration for. This may be helpful for interrogating the effect of nested folder configurations on a given resource project.
Implementations§
Trait Implementations§
Source§impl Clone for ShowEffectiveAutokeyConfigRequest
impl Clone for ShowEffectiveAutokeyConfigRequest
Source§fn clone(&self) -> ShowEffectiveAutokeyConfigRequest
fn clone(&self) -> ShowEffectiveAutokeyConfigRequest
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 ShowEffectiveAutokeyConfigRequest
impl Default for ShowEffectiveAutokeyConfigRequest
Source§fn default() -> ShowEffectiveAutokeyConfigRequest
fn default() -> ShowEffectiveAutokeyConfigRequest
Returns the “default value” for a type. Read more
Source§impl PartialEq for ShowEffectiveAutokeyConfigRequest
impl PartialEq for ShowEffectiveAutokeyConfigRequest
Source§fn eq(&self, other: &ShowEffectiveAutokeyConfigRequest) -> bool
fn eq(&self, other: &ShowEffectiveAutokeyConfigRequest) -> bool
Tests for
self and other values to be equal, and is used by ==.impl StructuralPartialEq for ShowEffectiveAutokeyConfigRequest
Auto Trait Implementations§
impl Freeze for ShowEffectiveAutokeyConfigRequest
impl RefUnwindSafe for ShowEffectiveAutokeyConfigRequest
impl Send for ShowEffectiveAutokeyConfigRequest
impl Sync for ShowEffectiveAutokeyConfigRequest
impl Unpin for ShowEffectiveAutokeyConfigRequest
impl UnsafeUnpin for ShowEffectiveAutokeyConfigRequest
impl UnwindSafe for ShowEffectiveAutokeyConfigRequest
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