#[non_exhaustive]pub struct DescribeNodegroupOutput {
pub nodegroup: Option<Nodegroup>,
/* private fields */
}
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.nodegroup: Option<Nodegroup>
The full description of your node group.
Implementations§
source§impl DescribeNodegroupOutput
impl DescribeNodegroupOutput
sourcepub fn builder() -> DescribeNodegroupOutputBuilder
pub fn builder() -> DescribeNodegroupOutputBuilder
Creates a new builder-style object to manufacture DescribeNodegroupOutput
.
Trait Implementations§
source§impl Clone for DescribeNodegroupOutput
impl Clone for DescribeNodegroupOutput
source§fn clone(&self) -> DescribeNodegroupOutput
fn clone(&self) -> DescribeNodegroupOutput
Returns a copy 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 DescribeNodegroupOutput
impl Debug for DescribeNodegroupOutput
source§impl PartialEq for DescribeNodegroupOutput
impl PartialEq for DescribeNodegroupOutput
source§fn eq(&self, other: &DescribeNodegroupOutput) -> bool
fn eq(&self, other: &DescribeNodegroupOutput) -> bool
This method tests for
self
and other
values to be equal, and is used
by ==
.source§impl RequestId for DescribeNodegroupOutput
impl RequestId for DescribeNodegroupOutput
source§fn request_id(&self) -> Option<&str>
fn request_id(&self) -> Option<&str>
Returns the request ID, or
None
if the service could not be reached.impl StructuralPartialEq for DescribeNodegroupOutput
Auto Trait Implementations§
impl RefUnwindSafe for DescribeNodegroupOutput
impl Send for DescribeNodegroupOutput
impl Sync for DescribeNodegroupOutput
impl Unpin for DescribeNodegroupOutput
impl UnwindSafe for DescribeNodegroupOutput
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