pub enum LoopError {
Io(Error),
Journal(String),
Queue(String),
Dispatch(String),
Config(String),
}Expand description
Errors returned by the loop runtime.
Variants§
Io(Error)
I/O failure (file open, read, write).
Journal(String)
Journal write to the project events file failed (fatal per spec).
Queue(String)
Queue operation failed.
Dispatch(String)
Dispatcher operation failed.
Config(String)
Configuration error (e.g., invalid budget).
Trait Implementations§
Source§impl Error for LoopError
impl Error for LoopError
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()
Auto Trait Implementations§
impl !RefUnwindSafe for LoopError
impl !UnwindSafe for LoopError
impl Freeze for LoopError
impl Send for LoopError
impl Sync for LoopError
impl Unpin for LoopError
impl UnsafeUnpin for LoopError
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