Generated from cargo doc --no-deps -p nemo-relay -p nemo-relay-adaptive -p nemo-relay-ffi.
pub enum OpenInferenceError {
MissingTokioRuntime,
UnsupportedTransport {
transport: &'static str,
},
InvalidGrpcHeader {
key: String,
message: String,
},
ExporterBuild(String),
Provider(String),
Core(FlowError),
}
Errors produced while configuring or operating the OpenInference subscriber.
MissingTokioRuntimeMissingTokioRuntime
The tonic gRPC exporter requires an active Tokio runtime.
UnsupportedTransportUnsupportedTransport
The requested transport is not available on this target.
transport: &'static strHuman-readable transport label used in the error message.
InvalidGrpcHeaderInvalidGrpcHeader
Failed to parse a configured gRPC metadata header.
key: StringHeader name that failed to parse.
message: StringParser failure message.
ExporterBuild(String)ExporterBuild(String)
Failed to build the OTLP exporter.
Provider(String)Provider(String)
The underlying tracer provider returned an error.
Core(FlowError)Core(FlowError)
Registration errors from the core runtime.
impl Debug for OpenInferenceErrorimpl Debug for OpenInferenceError
fmtfn fmt(&self, f: &mut Formatter<'_>) -> Result
impl Display for OpenInferenceErrorimpl Display for OpenInferenceError
fmtfn fmt(&self, __formatter: &mut Formatter<'_>) -> Result
impl Error for OpenInferenceErrorimpl Error for OpenInferenceError
sourcefn source(&self) -> Option<&(dyn Error + 'static)>
descriptionfn description(&self) -> &str
causefn cause(&self) -> Option<&dyn Error>
providefn provide<'a>(&'a self, request: &mut Request<'a>)
impl From<FlowError> for OpenInferenceErrorimpl From<FlowError> for OpenInferenceError
fromfn from(source: FlowError) -> Self