pub enum ActivationError {
HistogramConfigError,
TracingSubscriberInitError,
}Expand description
Error returned by LatencyTrace activation methods.
Variants§
Trait Implementations§
Source§impl Debug for ActivationError
impl Debug for ActivationError
Source§impl Display for ActivationError
impl Display for ActivationError
Source§impl Error for ActivationError
impl Error for ActivationError
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 From<CreationError> for ActivationError
impl From<CreationError> for ActivationError
Source§fn from(_: CreationError) -> Self
fn from(_: CreationError) -> Self
Converts to this type from the input type.
Source§impl From<TryInitError> for ActivationError
impl From<TryInitError> for ActivationError
Source§fn from(_: TryInitError) -> Self
fn from(_: TryInitError) -> Self
Converts to this type from the input type.
Auto Trait Implementations§
impl Freeze for ActivationError
impl RefUnwindSafe for ActivationError
impl Send for ActivationError
impl Sync for ActivationError
impl Unpin for ActivationError
impl UnwindSafe for ActivationError
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