pub enum PeriodicLoggerError {
ThreadAlreadyStarted,
WriteLockError(String),
ReadLockError(String),
CounterAlreadyExist(String),
CounterDoesNotExist(String),
WaitContextBuildError(Error),
WaitContextWaitError(Error),
TimerResetError(Error),
TimerNewError(Error),
}Variants§
ThreadAlreadyStarted
WriteLockError(String)
ReadLockError(String)
CounterAlreadyExist(String)
CounterDoesNotExist(String)
WaitContextBuildError(Error)
WaitContextWaitError(Error)
TimerResetError(Error)
TimerNewError(Error)
Trait Implementations§
Source§impl Debug for PeriodicLoggerError
impl Debug for PeriodicLoggerError
Source§impl Display for PeriodicLoggerError
impl Display for PeriodicLoggerError
Source§impl Error for PeriodicLoggerError
impl Error for PeriodicLoggerError
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 PartialEq for PeriodicLoggerError
impl PartialEq for PeriodicLoggerError
impl StructuralPartialEq for PeriodicLoggerError
Auto Trait Implementations§
impl Freeze for PeriodicLoggerError
impl RefUnwindSafe for PeriodicLoggerError
impl Send for PeriodicLoggerError
impl Sync for PeriodicLoggerError
impl Unpin for PeriodicLoggerError
impl UnwindSafe for PeriodicLoggerError
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