pub enum IndexingWorkerError {
DatabaseConnectionError(Error),
OperationError(OperationOutcomeError),
ElasticsearchError(Error),
FHIRPathError(FHIRPathError),
MissingSearchParameters(String),
Fatal,
ResourceTypeError(ResourceTypeError),
}Variants§
DatabaseConnectionError(Error)
OperationError(OperationOutcomeError)
ElasticsearchError(Error)
FHIRPathError(FHIRPathError)
MissingSearchParameters(String)
Fatal
ResourceTypeError(ResourceTypeError)
Trait Implementations§
Source§impl Debug for IndexingWorkerError
impl Debug for IndexingWorkerError
Source§impl From<Error> for IndexingWorkerError
impl From<Error> for IndexingWorkerError
Source§impl From<Error> for IndexingWorkerError
impl From<Error> for IndexingWorkerError
Source§impl From<FHIRPathError> for IndexingWorkerError
impl From<FHIRPathError> for IndexingWorkerError
Source§fn from(error: FHIRPathError) -> Self
fn from(error: FHIRPathError) -> Self
Converts to this type from the input type.
Source§impl From<IndexingWorkerError> for OperationOutcomeError
impl From<IndexingWorkerError> for OperationOutcomeError
Source§fn from(value: IndexingWorkerError) -> Self
fn from(value: IndexingWorkerError) -> Self
Converts to this type from the input type.
Source§impl From<OperationOutcomeError> for IndexingWorkerError
impl From<OperationOutcomeError> for IndexingWorkerError
Source§impl From<ResourceTypeError> for IndexingWorkerError
impl From<ResourceTypeError> for IndexingWorkerError
Source§fn from(error: ResourceTypeError) -> Self
fn from(error: ResourceTypeError) -> Self
Converts to this type from the input type.
Auto Trait Implementations§
impl !RefUnwindSafe for IndexingWorkerError
impl !UnwindSafe for IndexingWorkerError
impl Freeze for IndexingWorkerError
impl Send for IndexingWorkerError
impl Sync for IndexingWorkerError
impl Unpin for IndexingWorkerError
impl UnsafeUnpin for IndexingWorkerError
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
impl<T> ErasedDestructor for Twhere
T: 'static,
§impl<T> Instrument for T
impl<T> Instrument for T
§fn instrument(self, span: Span) -> Instrumented<Self>
fn instrument(self, span: Span) -> Instrumented<Self>
§fn in_current_span(self) -> Instrumented<Self>
fn in_current_span(self) -> Instrumented<Self>
Source§impl<T> IntoEither for T
impl<T> IntoEither for T
Source§fn into_either(self, into_left: bool) -> Either<Self, Self>
fn into_either(self, into_left: bool) -> Either<Self, Self>
Converts
self into a Left variant of Either<Self, Self>
if into_left is true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read moreSource§fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
Converts
self into a Left variant of Either<Self, Self>
if into_left(&self) returns true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read more