pub enum LiveLogDirReaderError {
LogDirReaderError(LogDirReaderError),
NotifyError(Error),
}
Variants§
LogDirReaderError(LogDirReaderError)
NotifyError(Error)
Trait Implementations§
Source§impl Debug for LiveLogDirReaderError
impl Debug for LiveLogDirReaderError
Source§impl Display for LiveLogDirReaderError
impl Display for LiveLogDirReaderError
Source§impl Error for LiveLogDirReaderError
impl Error for LiveLogDirReaderError
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<Error> for LiveLogDirReaderError
impl From<Error> for LiveLogDirReaderError
Source§impl From<LogDirReaderError> for LiveLogDirReaderError
impl From<LogDirReaderError> for LiveLogDirReaderError
Source§fn from(source: LogDirReaderError) -> Self
fn from(source: LogDirReaderError) -> Self
Converts to this type from the input type.
Auto Trait Implementations§
impl Freeze for LiveLogDirReaderError
impl !RefUnwindSafe for LiveLogDirReaderError
impl Send for LiveLogDirReaderError
impl Sync for LiveLogDirReaderError
impl Unpin for LiveLogDirReaderError
impl !UnwindSafe for LiveLogDirReaderError
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