pub enum Error<ReconcilerErr, QueueErr>where
ReconcilerErr: 'static,
QueueErr: 'static,{
ObjectNotFound(ObjectRef<DynamicObject>),
ReconcilerFailed(ReconcilerErr, ObjectRef<DynamicObject>),
QueueError(QueueErr),
RunnerError(Error<WriterDropped>),
}
Variants§
ObjectNotFound(ObjectRef<DynamicObject>)
ReconcilerFailed(ReconcilerErr, ObjectRef<DynamicObject>)
QueueError(QueueErr)
RunnerError(Error<WriterDropped>)
Trait Implementations§
Source§impl<ReconcilerErr, QueueErr> Display for Error<ReconcilerErr, QueueErr>where
ReconcilerErr: 'static,
QueueErr: 'static,
impl<ReconcilerErr, QueueErr> Display for Error<ReconcilerErr, QueueErr>where
ReconcilerErr: 'static,
QueueErr: 'static,
Source§impl<ReconcilerErr, QueueErr> Error for Error<ReconcilerErr, QueueErr>
impl<ReconcilerErr, QueueErr> Error for Error<ReconcilerErr, QueueErr>
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<ReconcilerErr, QueueErr> Freeze for Error<ReconcilerErr, QueueErr>
impl<ReconcilerErr, QueueErr> RefUnwindSafe for Error<ReconcilerErr, QueueErr>where
ReconcilerErr: RefUnwindSafe,
QueueErr: RefUnwindSafe,
impl<ReconcilerErr, QueueErr> Send for Error<ReconcilerErr, QueueErr>
impl<ReconcilerErr, QueueErr> Sync for Error<ReconcilerErr, QueueErr>
impl<ReconcilerErr, QueueErr> Unpin for Error<ReconcilerErr, QueueErr>
impl<ReconcilerErr, QueueErr> UnwindSafe for Error<ReconcilerErr, QueueErr>where
ReconcilerErr: UnwindSafe,
QueueErr: UnwindSafe,
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