pub enum PgSearchError {
FHIRPathError(FHIRPathError),
UnsupportedFHIRMethod(FHIRMethod),
SqlxError(String),
}Variants§
Trait Implementations§
Source§impl Debug for PgSearchError
impl Debug for PgSearchError
Source§impl From<Error> for PgSearchError
impl From<Error> for PgSearchError
Source§impl From<FHIRPathError> for PgSearchError
impl From<FHIRPathError> for PgSearchError
Source§fn from(error: FHIRPathError) -> Self
fn from(error: FHIRPathError) -> Self
Converts to this type from the input type.
Source§impl From<PgSearchError> for OperationOutcomeError
impl From<PgSearchError> for OperationOutcomeError
Source§fn from(value: PgSearchError) -> Self
fn from(value: PgSearchError) -> Self
Converts to this type from the input type.
Auto Trait Implementations§
impl Freeze for PgSearchError
impl RefUnwindSafe for PgSearchError
impl Send for PgSearchError
impl Sync for PgSearchError
impl Unpin for PgSearchError
impl UnsafeUnpin for PgSearchError
impl UnwindSafe for PgSearchError
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<ST, DT> CastableFrom<ST, Initialized, Initialized> for DT
impl<ST, DT> CastableFrom<ST, Uninit, Uninit> for DT
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> ⓘ
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