pub enum KubeadmControlPlaneStatusError {
InvalidConfiguration,
UnsupportedChange,
CreateError,
UpdateError,
DeleteError,
}
Variants§
InvalidConfiguration
InvalidConfigurationKubeadmControlPlaneError indicates that the kubeadm control plane configuration is invalid.
UnsupportedChange
UnsupportedChangeKubeadmControlPlaneError indicates that the kubeadm control plane spec has been updated in an unsupported way that cannot be reconciled.
CreateError
CreateKubeadmControlPlaneError indicates that an error was encountered when trying to create the kubeadm control plane.
UpdateError
UpdateKubeadmControlPlaneError indicates that an error was encountered when trying to update the kubeadm control plane.
DeleteError
DeleteKubeadmControlPlaneError indicates that an error was encountered when trying to delete the kubeadm control plane.
Trait Implementations§
Source§impl Clone for KubeadmControlPlaneStatusError
impl Clone for KubeadmControlPlaneStatusError
Source§fn clone(&self) -> KubeadmControlPlaneStatusError
fn clone(&self) -> KubeadmControlPlaneStatusError
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<'de> Deserialize<'de> for KubeadmControlPlaneStatusError
impl<'de> Deserialize<'de> for KubeadmControlPlaneStatusError
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 Error for KubeadmControlPlaneStatusError
impl Error for KubeadmControlPlaneStatusError
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 KubeadmControlPlaneStatusError
impl RefUnwindSafe for KubeadmControlPlaneStatusError
impl Send for KubeadmControlPlaneStatusError
impl Sync for KubeadmControlPlaneStatusError
impl Unpin for KubeadmControlPlaneStatusError
impl UnwindSafe for KubeadmControlPlaneStatusError
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