pub enum ItraceError {
NoConfigDir,
TracerNotFound {
path: PathBuf,
},
Io {
path: PathBuf,
source: Error,
},
Toml {
path: PathBuf,
source: Error,
},
NoDatetimeFeature,
SubscriberInit(TryInitError),
}Variants§
Trait Implementations§
Source§impl Debug for ItraceError
impl Debug for ItraceError
Source§impl Display for ItraceError
impl Display for ItraceError
Source§impl Error for ItraceError
impl Error for ItraceError
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<TryInitError> for ItraceError
impl From<TryInitError> for ItraceError
Source§fn from(source: TryInitError) -> Self
fn from(source: TryInitError) -> Self
Converts to this type from the input type.
Auto Trait Implementations§
impl Freeze for ItraceError
impl !RefUnwindSafe for ItraceError
impl Send for ItraceError
impl Sync for ItraceError
impl Unpin for ItraceError
impl UnsafeUnpin for ItraceError
impl !UnwindSafe for ItraceError
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