Enum kube_runtime::finalizer::Error [−][src]
pub enum Error<ReconcileErr> where
ReconcileErr: StdError + 'static, {
ApplyFailed {
source: ReconcileErr,
},
CleanupFailed {
source: ReconcileErr,
},
AddFinalizer {
source: Error,
},
RemoveFinalizer {
source: Error,
},
UnnamedObject,
}
Variants
Fields of AddFinalizer
source: Error
Fields of RemoveFinalizer
source: Error
Trait Implementations
👎 Deprecated since 1.42.0:
use the Display impl or to_string()
👎 Deprecated since 1.33.0:
replaced by Error::source, which can support downcasting
The lower-level source of this error, if any. Read more
Auto Trait Implementations
impl<ReconcileErr> !RefUnwindSafe for Error<ReconcileErr>
impl<ReconcileErr> !UnwindSafe for Error<ReconcileErr>
Blanket Implementations
For maximum effectiveness, this needs to be called as a method to benefit from Rust’s automatic dereferencing of method receivers. Read more
Mutably borrows from an owned value. Read more
Attaches the provided Subscriber
to this type, returning a
WithDispatch
wrapper. Read more
Attaches the current default Subscriber
to this type, returning a
WithDispatch
wrapper. Read more