pub enum ProjectorRunnerError {
ProcessedEventStore(ProjectorProcessedEventStoreError),
UnitOfWork(UnitOfWorkError),
UnitOfWorkFactory(UnitOfWorkFactoryError),
Definition(Box<dyn Error + Send + Sync>),
}Variants§
ProcessedEventStore(ProjectorProcessedEventStoreError)
UnitOfWork(UnitOfWorkError)
UnitOfWorkFactory(UnitOfWorkFactoryError)
Definition(Box<dyn Error + Send + Sync>)
Trait Implementations§
Source§impl Debug for ProjectorRunnerError
impl Debug for ProjectorRunnerError
Source§impl Display for ProjectorRunnerError
impl Display for ProjectorRunnerError
Source§impl Error for ProjectorRunnerError
impl Error for ProjectorRunnerError
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()
Source§impl From<ProjectorProcessedEventStoreError> for ProjectorRunnerError
impl From<ProjectorProcessedEventStoreError> for ProjectorRunnerError
Source§fn from(source: ProjectorProcessedEventStoreError) -> Self
fn from(source: ProjectorProcessedEventStoreError) -> Self
Converts to this type from the input type.
Source§impl From<ProjectorRunnerError> for ProjectorWorkerError
impl From<ProjectorRunnerError> for ProjectorWorkerError
Source§fn from(source: ProjectorRunnerError) -> Self
fn from(source: ProjectorRunnerError) -> Self
Converts to this type from the input type.
Source§impl From<UnitOfWorkError> for ProjectorRunnerError
impl From<UnitOfWorkError> for ProjectorRunnerError
Source§fn from(source: UnitOfWorkError) -> Self
fn from(source: UnitOfWorkError) -> Self
Converts to this type from the input type.
Source§impl From<UnitOfWorkFactoryError> for ProjectorRunnerError
impl From<UnitOfWorkFactoryError> for ProjectorRunnerError
Source§fn from(source: UnitOfWorkFactoryError) -> Self
fn from(source: UnitOfWorkFactoryError) -> Self
Converts to this type from the input type.
Auto Trait Implementations§
impl Freeze for ProjectorRunnerError
impl !RefUnwindSafe for ProjectorRunnerError
impl Send for ProjectorRunnerError
impl Sync for ProjectorRunnerError
impl Unpin for ProjectorRunnerError
impl !UnwindSafe for ProjectorRunnerError
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