Type Alias TraceResult
pub type TraceResult<T> = Result<T, TraceError>;Available on crate feature
opentelemetry only.Expand description
Describe the result of operations in tracing API.
Aliased Type§
enum TraceResult<T> {
Ok(T),
Err(TraceError),
}