#[non_exhaustive]pub struct GetNodeRequest {
pub name: String,
/* private fields */
}Expand description
Request message for VmwareEngine.GetNode
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.name: StringRequired. The resource name of the node to retrieve.
For example:
projects/{project}/locations/{location}/privateClouds/{private_cloud}/clusters/{cluster}/nodes/{node}
Implementations§
Trait Implementations§
Source§impl Clone for GetNodeRequest
impl Clone for GetNodeRequest
Source§fn clone(&self) -> GetNodeRequest
fn clone(&self) -> GetNodeRequest
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 GetNodeRequest
impl Debug for GetNodeRequest
Source§impl Default for GetNodeRequest
impl Default for GetNodeRequest
Source§fn default() -> GetNodeRequest
fn default() -> GetNodeRequest
Returns the “default value” for a type. Read more
Source§impl Message for GetNodeRequest
impl Message for GetNodeRequest
Source§impl PartialEq for GetNodeRequest
impl PartialEq for GetNodeRequest
impl StructuralPartialEq for GetNodeRequest
Auto Trait Implementations§
impl Freeze for GetNodeRequest
impl RefUnwindSafe for GetNodeRequest
impl Send for GetNodeRequest
impl Sync for GetNodeRequest
impl Unpin for GetNodeRequest
impl UnwindSafe for GetNodeRequest
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