#[non_exhaustive]pub struct DeleteNodePoolRequest {
pub name: String,
pub request_id: String,
/* private fields */
}Expand description
Deletes 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.
request_id: StringA unique identifier for this request. Restricted to 36 ASCII characters. A
random UUID is recommended. This request is only idempotent if
request_id is provided.
Implementations§
Trait Implementations§
Source§impl Clone for DeleteNodePoolRequest
impl Clone for DeleteNodePoolRequest
Source§fn clone(&self) -> DeleteNodePoolRequest
fn clone(&self) -> DeleteNodePoolRequest
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 DeleteNodePoolRequest
impl Debug for DeleteNodePoolRequest
Source§impl Default for DeleteNodePoolRequest
impl Default for DeleteNodePoolRequest
Source§fn default() -> DeleteNodePoolRequest
fn default() -> DeleteNodePoolRequest
Returns the “default value” for a type. Read more
Source§impl Message for DeleteNodePoolRequest
impl Message for DeleteNodePoolRequest
Source§impl PartialEq for DeleteNodePoolRequest
impl PartialEq for DeleteNodePoolRequest
impl StructuralPartialEq for DeleteNodePoolRequest
Auto Trait Implementations§
impl Freeze for DeleteNodePoolRequest
impl RefUnwindSafe for DeleteNodePoolRequest
impl Send for DeleteNodePoolRequest
impl Sync for DeleteNodePoolRequest
impl Unpin for DeleteNodePoolRequest
impl UnwindSafe for DeleteNodePoolRequest
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