Enum opentelemetry::global::Error
source · #[non_exhaustive]pub enum Error {
Trace(TraceError),
Metric(MetricsError),
Log(LogError),
Propagation(PropagationError),
Other(String),
}
Expand description
Wrapper for error from both tracing and metrics part of open telemetry.
Variants (Non-exhaustive)§
This enum is marked as non-exhaustive
Non-exhaustive enums could have additional variants added in future. Therefore, when matching against variants of non-exhaustive enums, an extra wildcard arm must be added to account for any future variants.
Trace(TraceError)
Failed to export traces.
Metric(MetricsError)
An issue raised by the metrics module.
Log(LogError)
Failed to export logs.
Propagation(PropagationError)
Error happens when injecting and extracting information using propagators.
Other(String)
Other types of failures not covered by the variants above.
Trait Implementations§
source§impl Error for Error
impl Error for Error
source§fn source(&self) -> Option<&(dyn Error + 'static)>
fn source(&self) -> Option<&(dyn Error + 'static)>
Returns 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<MetricsError> for Error
impl From<MetricsError> for Error
source§fn from(source: MetricsError) -> Self
fn from(source: MetricsError) -> Self
Converts to this type from the input type.
source§impl<T> From<PoisonError<T>> for Error
impl<T> From<PoisonError<T>> for Error
source§fn from(err: PoisonError<T>) -> Self
fn from(err: PoisonError<T>) -> Self
Converts to this type from the input type.
source§impl From<PropagationError> for Error
impl From<PropagationError> for Error
source§fn from(source: PropagationError) -> Self
fn from(source: PropagationError) -> Self
Converts to this type from the input type.
source§impl From<TraceError> for Error
impl From<TraceError> for Error
source§fn from(source: TraceError) -> Self
fn from(source: TraceError) -> Self
Converts to this type from the input type.
Auto Trait Implementations§
impl Freeze for Error
impl !RefUnwindSafe for Error
impl Send for Error
impl Sync for Error
impl Unpin for Error
impl !UnwindSafe for Error
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