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