pub enum OpErrorKind {
Show 13 variants
FieldMissing(&'static str),
TemporaryResource(Error),
InvariantViolated(String),
MaterializeError(Error),
PgTypeError(TypeFromOidError),
MissingPrivilege {
privilege: &'static str,
object: String,
},
Filesystem(Error),
Crypto(ErrorStack),
CSV(Error),
Unsupported(String),
IdentError(IdentError),
UnknownTable {
database: String,
schema: String,
table: String,
},
UnknownRequest(String),
}
Variants§
FieldMissing(&'static str)
TemporaryResource(Error)
InvariantViolated(String)
MaterializeError(Error)
PgTypeError(TypeFromOidError)
MissingPrivilege
Filesystem(Error)
Crypto(ErrorStack)
CSV(Error)
Unsupported(String)
IdentError(IdentError)
UnknownTable
UnknownRequest(String)
Implementations§
Trait Implementations§
source§impl Context for OpErrorKind
impl Context for OpErrorKind
type TransformType = OpError
fn context(self, context: &'static str) -> Self::TransformType
fn with_context(self, f: impl FnOnce() -> String) -> Self::TransformType
source§impl Debug for OpErrorKind
impl Debug for OpErrorKind
source§impl Display for OpErrorKind
impl Display for OpErrorKind
source§impl Error for OpErrorKind
impl Error for OpErrorKind
source§fn source(&self) -> Option<&(dyn Error + 'static)>
fn source(&self) -> Option<&(dyn Error + 'static)>
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<Error> for OpErrorKind
impl From<Error> for OpErrorKind
source§impl From<Error> for OpErrorKind
impl From<Error> for OpErrorKind
source§impl From<Error> for OpErrorKind
impl From<Error> for OpErrorKind
source§impl From<ErrorStack> for OpErrorKind
impl From<ErrorStack> for OpErrorKind
source§fn from(source: ErrorStack) -> Self
fn from(source: ErrorStack) -> Self
Converts to this type from the input type.
source§impl From<IdentError> for OpErrorKind
impl From<IdentError> for OpErrorKind
source§fn from(source: IdentError) -> Self
fn from(source: IdentError) -> Self
Converts to this type from the input type.
source§impl From<TypeFromOidError> for OpErrorKind
impl From<TypeFromOidError> for OpErrorKind
source§fn from(source: TypeFromOidError) -> Self
fn from(source: TypeFromOidError) -> Self
Converts to this type from the input type.
Auto Trait Implementations§
impl !RefUnwindSafe for OpErrorKind
impl Send for OpErrorKind
impl Sync for OpErrorKind
impl Unpin for OpErrorKind
impl !UnwindSafe for OpErrorKind
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
source§impl<E> ErrorExt for Ewhere
E: Error + ?Sized,
impl<E> ErrorExt for Ewhere E: Error + ?Sized,
source§fn display_with_causes(&self) -> ErrorChainFormatter<&Self>
fn display_with_causes(&self) -> ErrorChainFormatter<&Self>
Returns a type that displays the error, along with the chain of source errors or
causes, if there are any. Read more
source§fn to_string_with_causes(&self) -> String
fn to_string_with_causes(&self) -> String
Converts
self
to a string String
, along with the chain of source errors or
causes, if there are any. Read moresource§impl<T> FutureExt for T
impl<T> FutureExt for T
source§fn with_context(self, otel_cx: Context) -> WithContext<Self>
fn with_context(self, otel_cx: Context) -> WithContext<Self>
source§fn with_current_context(self) -> WithContext<Self>
fn with_current_context(self) -> WithContext<Self>
source§impl<T> Instrument for T
impl<T> Instrument for T
source§fn instrument(self, span: Span) -> Instrumented<Self>
fn instrument(self, span: Span) -> Instrumented<Self>
source§fn in_current_span(self) -> Instrumented<Self>
fn in_current_span(self) -> Instrumented<Self>
source§impl<T> IntoRequest<T> for T
impl<T> IntoRequest<T> for T
source§fn into_request(self) -> Request<T>
fn into_request(self) -> Request<T>
Wrap the input message
T
in a tonic::Request
source§impl<T> Pointable for T
impl<T> Pointable for T
source§impl<P, R> ProtoType<R> for Pwhere
R: RustType<P>,
impl<P, R> ProtoType<R> for Pwhere R: RustType<P>,
source§fn into_rust(self) -> Result<R, TryFromProtoError>
fn into_rust(self) -> Result<R, TryFromProtoError>
See
RustType::from_proto
.source§fn from_rust(rust: &R) -> P
fn from_rust(rust: &R) -> P
See
RustType::into_proto
.