pub enum InMemoryExporterError {
InternalFailure(String),
}
Available on crate feature
testing
only.Expand description
Errors that can occur during when returning telemetry from InMemoryLogExporter
Variants§
InternalFailure(String)
Operation failed due to an internal error.
The error message is intended for logging purposes only and should not be used to make programmatic decisions. It is implementation-specific and subject to change without notice. Consumers of this error should not rely on its content beyond logging.
Trait Implementations§
Source§impl Debug for InMemoryExporterError
impl Debug for InMemoryExporterError
Source§impl Display for InMemoryExporterError
impl Display for InMemoryExporterError
Source§impl Error for InMemoryExporterError
impl Error for InMemoryExporterError
1.30.0 · 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<T> From<PoisonError<T>> for InMemoryExporterError
impl<T> From<PoisonError<T>> for InMemoryExporterError
Source§fn from(err: PoisonError<T>) -> Self
fn from(err: PoisonError<T>) -> Self
Converts to this type from the input type.
Auto Trait Implementations§
impl Freeze for InMemoryExporterError
impl RefUnwindSafe for InMemoryExporterError
impl Send for InMemoryExporterError
impl Sync for InMemoryExporterError
impl Unpin for InMemoryExporterError
impl UnwindSafe for InMemoryExporterError
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