#[non_exhaustive]pub struct GetNodePoolRequest {
pub name: String,
/* private fields */
}Expand description
Gets a node pool.
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 pool.
Implementations§
Trait Implementations§
Source§impl Clone for GetNodePoolRequest
impl Clone for GetNodePoolRequest
Source§fn clone(&self) -> GetNodePoolRequest
fn clone(&self) -> GetNodePoolRequest
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 GetNodePoolRequest
impl Debug for GetNodePoolRequest
Source§impl Default for GetNodePoolRequest
impl Default for GetNodePoolRequest
Source§fn default() -> GetNodePoolRequest
fn default() -> GetNodePoolRequest
Returns the “default value” for a type. Read more
Source§impl Message for GetNodePoolRequest
impl Message for GetNodePoolRequest
Source§impl PartialEq for GetNodePoolRequest
impl PartialEq for GetNodePoolRequest
impl StructuralPartialEq for GetNodePoolRequest
Auto Trait Implementations§
impl Freeze for GetNodePoolRequest
impl RefUnwindSafe for GetNodePoolRequest
impl Send for GetNodePoolRequest
impl Sync for GetNodePoolRequest
impl Unpin for GetNodePoolRequest
impl UnwindSafe for GetNodePoolRequest
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