pub enum MachineStatusError {
InvalidConfiguration,
UnsupportedChange,
InsufficientResources,
CreateError,
UpdateError,
DeleteError,
JoinClusterTimeoutError,
}Variants§
InvalidConfiguration
InvalidConfigurationMachineError represents that the combination of configuration in the MachineSpec is not supported by this cluster. This is not a transient error, but indicates a state that must be fixed before progress can be made.
Example: the ProviderSpec specifies an instance type that doesn’t exist,.
UnsupportedChange
InsufficientResources
CreateError
UpdateError
DeleteError
JoinClusterTimeoutError
Trait Implementations§
Source§impl Clone for MachineStatusError
impl Clone for MachineStatusError
Source§fn clone(&self) -> MachineStatusError
fn clone(&self) -> MachineStatusError
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · 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 MachineStatusError
impl Debug for MachineStatusError
Source§impl<'de> Deserialize<'de> for MachineStatusError
impl<'de> Deserialize<'de> for MachineStatusError
Source§fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
Source§impl Display for MachineStatusError
impl Display for MachineStatusError
Source§impl Error for MachineStatusError
impl Error for MachineStatusError
1.30.0 · Source§fn source(&self) -> Option<&(dyn Error + 'static)>
fn source(&self) -> Option<&(dyn Error + 'static)>
Returns the lower-level source of this error, if any. Read more
1.0.0 · Source§fn description(&self) -> &str
fn description(&self) -> &str
👎Deprecated since 1.42.0:
use the Display impl or to_string()
Auto Trait Implementations§
impl Freeze for MachineStatusError
impl RefUnwindSafe for MachineStatusError
impl Send for MachineStatusError
impl Sync for MachineStatusError
impl Unpin for MachineStatusError
impl UnsafeUnpin for MachineStatusError
impl UnwindSafe for MachineStatusError
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