#[non_exhaustive]pub struct ShowNsxCredentialsRequest {
pub private_cloud: String,
/* private fields */
}Expand description
Request message for VmwareEngine.ShowNsxCredentials
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.private_cloud: StringRequired. The resource name of the private cloud
to be queried for credentials.
Resource names are schemeless URIs that follow the conventions in
https://cloud.google.com/apis/design/resource_names.
For example:
projects/my-project/locations/us-central1-a/privateClouds/my-cloud
Implementations§
Source§impl ShowNsxCredentialsRequest
impl ShowNsxCredentialsRequest
pub fn new() -> Self
Sourcepub fn set_private_cloud<T: Into<String>>(self, v: T) -> Self
pub fn set_private_cloud<T: Into<String>>(self, v: T) -> Self
Sets the value of private_cloud.
Trait Implementations§
Source§impl Clone for ShowNsxCredentialsRequest
impl Clone for ShowNsxCredentialsRequest
Source§fn clone(&self) -> ShowNsxCredentialsRequest
fn clone(&self) -> ShowNsxCredentialsRequest
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 ShowNsxCredentialsRequest
impl Debug for ShowNsxCredentialsRequest
Source§impl Default for ShowNsxCredentialsRequest
impl Default for ShowNsxCredentialsRequest
Source§fn default() -> ShowNsxCredentialsRequest
fn default() -> ShowNsxCredentialsRequest
Returns the “default value” for a type. Read more
Source§impl Message for ShowNsxCredentialsRequest
impl Message for ShowNsxCredentialsRequest
impl StructuralPartialEq for ShowNsxCredentialsRequest
Auto Trait Implementations§
impl Freeze for ShowNsxCredentialsRequest
impl RefUnwindSafe for ShowNsxCredentialsRequest
impl Send for ShowNsxCredentialsRequest
impl Sync for ShowNsxCredentialsRequest
impl Unpin for ShowNsxCredentialsRequest
impl UnwindSafe for ShowNsxCredentialsRequest
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