Enum lazy_queue::ProcessingError [−][src]
pub enum ProcessingError<R, E> { ReceiverError(R), FutureError(E), }
Expand description
An error that might happen during processing of a queue.
Variants
Channel has closed.
Error returned by a processor.
Trait Implementations
👎 Deprecated since 1.42.0:
use the Display impl or to_string()
👎 Deprecated since 1.33.0:
replaced by Error::source, which can support downcasting
The lower-level source of this error, if any. Read more
Auto Trait Implementations
impl<R, E> RefUnwindSafe for ProcessingError<R, E> where
E: RefUnwindSafe,
R: RefUnwindSafe,
impl<R, E> Send for ProcessingError<R, E> where
E: Send,
R: Send,
impl<R, E> Sync for ProcessingError<R, E> where
E: Sync,
R: Sync,
impl<R, E> Unpin for ProcessingError<R, E> where
E: Unpin,
R: Unpin,
impl<R, E> UnwindSafe for ProcessingError<R, E> where
E: UnwindSafe,
R: UnwindSafe,