#[non_exhaustive]pub struct AwsNodePoolError {
pub message: String,
/* private fields */
}๐Deprecated
Expand description
AwsNodePoolError describes errors found on AWS node pools.
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.message: String๐Deprecated
Human-friendly description of the error.
Implementationsยง
Trait Implementationsยง
Sourceยงimpl Clone for AwsNodePoolError
impl Clone for AwsNodePoolError
Sourceยงfn clone(&self) -> AwsNodePoolError
fn clone(&self) -> AwsNodePoolError
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 AwsNodePoolError
impl Debug for AwsNodePoolError
Sourceยงimpl Default for AwsNodePoolError
impl Default for AwsNodePoolError
Sourceยงfn default() -> AwsNodePoolError
fn default() -> AwsNodePoolError
Returns the โdefault valueโ for a type. Read more
Sourceยงimpl Message for AwsNodePoolError
impl Message for AwsNodePoolError
Sourceยงimpl PartialEq for AwsNodePoolError
impl PartialEq for AwsNodePoolError
impl StructuralPartialEq for AwsNodePoolError
Auto Trait Implementationsยง
impl Freeze for AwsNodePoolError
impl RefUnwindSafe for AwsNodePoolError
impl Send for AwsNodePoolError
impl Sync for AwsNodePoolError
impl Unpin for AwsNodePoolError
impl UnsafeUnpin for AwsNodePoolError
impl UnwindSafe for AwsNodePoolError
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